Skip to content

Commit

Permalink
Added missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
tgaddair committed Sep 16, 2023
1 parent d4c74f2 commit 534ee42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 534ee42

Please sign in to comment.