Skip to content

Commit 5056007

Browse files
committed
rc 1.5.0 skip neuron-requiring tests unless explicit opt-in
1 parent ce342a2 commit 5056007

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def pytest_collection_modifyitems(config, items):
4545
)
4646

4747
skip_neuron_test = pytest.mark.skipif(
48-
(os.getenv('TEST_COMPLETE') != 'true') and (os.getenv('TEST_NEURON') != 'true'),
48+
os.getenv('TEST_NEURON') != 'true',
4949
reason='this test depends on the NEURON simulation library. This dependency is not straghtforward to build '\
5050
'and install, so you must opt in to running this test'
5151
)

0 commit comments

Comments
 (0)