Skip to content

Commit 5498a1f

Browse files
authored
Prepend CI_ to DISABLE_INTEGRATION_TESTS (dagster-io#15774)
We don't automatically pass all env vars down through tox. We do, however, pass all env vars that begin with CI_* through.
1 parent 210f0c5 commit 5498a1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def pytest_configure(config):
1919
def pytest_runtest_setup(item):
2020
try:
2121
next(item.iter_markers("integration"))
22-
if os.getenv("DISABLE_INTEGRATION_TESTS"):
22+
if os.getenv("CI_DISABLE_INTEGRATION_TESTS"):
2323
pytest.skip("Integration tests are disabled")
2424

2525
except StopIteration:

0 commit comments

Comments
 (0)