diff options
author | Max Romanov <max.romanov@nginx.com> | 2020-10-28 00:01:46 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2020-10-28 00:01:46 +0300 |
commit | 6a00bab41e2ebffe5f61f6fb9641162624db41d1 (patch) | |
tree | 05859e0a76d323a7333bea0ef6086bd07e8f0656 /test/conftest.py | |
parent | f007ad4dcfee0037cd86bf31804795e5f60cb2d9 (diff) | |
download | unit-6a00bab41e2ebffe5f61f6fb9641162624db41d1.tar.gz unit-6a00bab41e2ebffe5f61f6fb9641162624db41d1.tar.bz2 |
Tests: improving get_application_type() and fixing its name.
This patch also enables multiversion tests running for Java.
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 |