Skip to content

Commit

Permalink
Mark test_utils as a verification test.
Browse files Browse the repository at this point in the history
Without this it won't run when verification-tests.yml workflow executes with
"pytest -m verification".

See `pytest` docs [Specifying which tests to
run](https://docs.pytest.org/en/stable/how-to/usage.html#specifying-which-tests-to-run)
and [Working with custom
markers](https://docs.pytest.org/en/7.1.x/example/markers.html).
  • Loading branch information
mikerkelly committed Nov 8, 2024
1 parent 059477c commit 75d13e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/verification/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .utils import assert_public_method_signature_equality


pytestmark = [pytest.mark.disable_db]
pytestmark = [pytest.mark.verification, pytest.mark.disable_db]


class TestPublicMethodSignatureEquality:
Expand Down

0 comments on commit 75d13e9

Please sign in to comment.