From: Karl O. Pinc Date: Tue, 24 Nov 2020 18:45:40 +0000 (-0600) Subject: Functional tests are integration tests X-Git-Url: https://papio.biology.duke.edu/gitweb/?a=commitdiff_plain;h=43cec77144438e2cd11f7b3348c79d01c25c59e3;p=pgwui_common Functional tests are integration tests --- diff --git a/tests/test_exceptions.py b/tests/test_exceptions.py index 41a55d4..575412c 100644 --- a/tests/test_exceptions.py +++ b/tests/test_exceptions.py @@ -26,21 +26,21 @@ import pgwui_common.exceptions as common_ex # Functional tests -@pytest.mark.unittest +@pytest.mark.integrationtest def test_unknownsettingkeyerror(): '''Takes an argument''' assert isinstance(common_ex.UnknownSettingKeyError('key'), common_ex.Error) -@pytest.mark.unittest +@pytest.mark.integrationtest def test_missingsettingerror(): '''Takes an argument''' assert isinstance(common_ex.MissingSettingError('key'), common_ex.Error) -@pytest.mark.unittest +@pytest.mark.integrationtest def test_notbooleansettingerror(): '''Takes two arguments''' assert isinstance(common_ex.NotBooleanSettingError('key', 'val'),