tests: run all tests, but exclude tests specific to my computer from CI
controllable via HPI_TESTS_KARLICOSS=true
This commit is contained in:
parent
6239879245
commit
d562f00dca
21 changed files with 93 additions and 72 deletions
7
tests/common.py
Normal file
7
tests/common.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
import os
|
||||
|
||||
import pytest
|
||||
|
||||
skip_if_not_karlicoss = pytest.mark.skipif(
|
||||
'HPI_TESTS_KARLICOSS' not in os.environ, reason='test only works on @karlicoss data for now',
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue