Skip to content

Commit

Permalink
hide neuron output during support test
Browse files Browse the repository at this point in the history
  • Loading branch information
JustasB authored Apr 21, 2019
1 parent 7cf4453 commit 372e740
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neuronunit/models/backends/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
TemporaryDirectory

# Test for NEURON support in a separate python process
NEURON_SUPPORT = (os.system('python -c "import neuron" >/dev/null') == 0)
NEURON_SUPPORT = (os.system("python -c 'import neuron' > /dev/null 2>&1") == 0)

try:
import pyNN
Expand Down

0 comments on commit 372e740

Please # to comment.