HPI/tests/common.py
Dima Gerasimov d562f00dca tests: run all tests, but exclude tests specific to my computer from CI
controllable via HPI_TESTS_KARLICOSS=true
2021-02-14 17:47:18 +00:00

7 lines
170 B
Python

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',
)