aboutsummaryrefslogtreecommitdiff
path: root/unittests/helpers.py
diff options
context:
space:
mode:
Diffstat (limited to 'unittests/helpers.py')
-rw-r--r--unittests/helpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/helpers.py b/unittests/helpers.py
index 0945384..182dfa3 100644
--- a/unittests/helpers.py
+++ b/unittests/helpers.py
@@ -17,7 +17,7 @@ from run_tests import get_fake_env
def is_ci():
- if 'MESON_CI_JOBNAME' in os.environ:
+ if os.environ.get('MESON_CI_JOBNAME') not in {None, 'thirdparty'}:
return True
return False