Skip to content

Commit

Permalink
mark gpu tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kw-corne committed Aug 21, 2023
1 parent 06669a4 commit 9e6d2a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions tests/test_verifier/test_verifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"verifier",
[
pytest.param(lazy_fixture("nnenum")),
pytest.param(lazy_fixture("abcrown")),
pytest.param(lazy_fixture("ovalbab")),
pytest.param(lazy_fixture("verinet")),
pytest.param(lazy_fixture("abcrown"), marks=pytest.mark.gpu),
pytest.param(lazy_fixture("ovalbab"), marks=pytest.mark.gpu),
pytest.param(lazy_fixture("verinet"), marks=pytest.mark.gpu),
],
)

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ deps =
pytest-lazy-fixture
passenv = CODECOV_*
commands =
coverage run -m pytest -v {tty:--color=yes} {posargs}
coverage run -m pytest -v -m "not gpu" {tty:--color=yes} {posargs}
coverage report --omit=tests/*
coverage xml --omit=tests/*

Expand Down

0 comments on commit 9e6d2a9

Please sign in to comment.