mirror of https://github.com/nucypher/nucypher.git
7 lines
169 B
Python
7 lines
169 B
Python
|
import os
|
||
|
import pytest
|
||
|
|
||
|
|
||
|
circleci_only = pytest.mark.skipif(condition=('CIRCLECI' not in os.environ),
|
||
|
reason='Only run on CircleCI')
|