Functional tests are integration tests
authorKarl O. Pinc <kop@karlpinc.com>
Tue, 24 Nov 2020 18:45:40 +0000 (12:45 -0600)
committerKarl O. Pinc <kop@karlpinc.com>
Tue, 24 Nov 2020 18:45:40 +0000 (12:45 -0600)
tests/test_exceptions.py

index 41a55d41e2edf4f9d12fb6ae635e84c77686672c..575412cfde241e9f27108fd07e83d39928bf6023 100644 (file)
@@ -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'),