From 8926e9ff28c79d8420b64c3cf761fe7989782140 Mon Sep 17 00:00:00 2001 From: Alexander Hess Date: Mon, 1 Feb 2021 22:00:47 +0100 Subject: [PATCH] Fix nox session for slow CI tests - when running tests marked with "r" we still must not run tests marked with "db" on the CI server --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index e43d2ba..eac123e 100644 --- a/noxfile.py +++ b/noxfile.py @@ -207,7 +207,7 @@ def test(session): # test cases that require the slow installation of R and some packages. if session.env.get('_slow_ci_tests'): session.run( - 'pytest', '--randomly-seed=4287', '-m', 'r', PYTEST_LOCATION, + 'pytest', '--randomly-seed=4287', '-m', 'r and not db', PYTEST_LOCATION, ) # In the "ci-tests-slow" session, we do not run any test tool