diff options
Diffstat (limited to 'test/conftest.py')
-rw-r--r-- | test/conftest.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/conftest.py b/test/conftest.py index 0b9adf69..41d1bf00 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -75,7 +75,9 @@ def skip_alert(*alerts): def pytest_generate_tests(metafunc): cls = metafunc.cls - if not hasattr(cls, 'application_type'): + if (not hasattr(cls, 'application_type') + or cls.application_type == None + or cls.application_type == 'external'): return type = cls.application_type |