From 534ee4226b58a8c56bb1d61c682334c4ea263c0d Mon Sep 17 00:00:00 2001 From: Travis Addair Date: Sat, 16 Sep 2023 13:13:04 -0700 Subject: [PATCH] Added missing comma --- pytest.ini | 1 + tests/conftest.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pytest.ini b/pytest.ini index bd9e58e68a8..5a8d8487ecf 100644 --- a/pytest.ini +++ b/pytest.ini @@ -11,5 +11,6 @@ markers = integration_tests_b: mark a test to be run as part of integration tests, group B. integration_tests_c: mark a test to be run as part of integration tests, group C. integration_tests_d: mark a test to be run as part of integration tests, group D. + integration_tests_e: mark a test to be run as part of integration tests, group E. filterwarnings = ignore::DeprecationWarning diff --git a/tests/conftest.py b/tests/conftest.py index 963dfbe880c..144c8c889f4 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -38,7 +38,7 @@ TEST_SUITE_TIMEOUT_S = int(os.environ.get("LUDWIG_TEST_SUITE_TIMEOUT_S", 3600)) -explicit_int_markers = ("integration_tests_a", "integration_tests_b" "integration_tests_c", "integration_tests_d") +explicit_int_markers = {"integration_tests_a", "integration_tests_b", "integration_tests_c", "integration_tests_d"} def pytest_sessionstart(session):