Skip to content

Commit 02136a8

Browse files
committed
test coverage: test use_apical_points in the config during test_run_combos
1 parent 9e98ec3 commit 02136a8

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

bluepymm/tests/test_run_combos.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,8 @@ def test_run_combos():
5454

5555
# verify output
5656
_verify_run_combos_output(config['scores_db'])
57+
58+
# with use_apical_points
59+
config['use_apical_points'] = False
60+
run_combos.main.run_combos_from_conf(config)
61+
_verify_run_combos_output(config['scores_db'])

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
name="bluepymm",
2828
version=versioneer.get_version(),
2929
cmdclass=versioneer.get_cmdclass(),
30-
install_requires=['sh', 'bluepyopt', 'matplotlib', 'pandas', 'numpy',
30+
install_requires=['sh', 'bluepyopt', 'matplotlib', 'pandas', 'numpy', 'NEURON',
3131
'ipyparallel', 'lxml', 'h5py', 'pyyaml'],
3232
packages=setuptools.find_packages(exclude=('notebook',)),
3333
author="BlueBrain Project, EPFL",

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ setenv =
2121
PYTHONPATH={env:TOX_NRNDIR}/local/lib/python:{env:TOX_NRNDIR}/local/lib64/python
2222
commands =
2323
make clean
24-
./.install_neuron.sh {env:TOX_NRNDIR}/src {env:TOX_NRNDIR}/local {basepython}
24+
; ./.install_neuron.sh {env:TOX_NRNDIR}/src {env:TOX_NRNDIR}/local {basepython}
2525

26-
make toxbinlinks
26+
; make toxbinlinks
2727

2828
make simple1_git
2929
style: pycodestyle --ignore=E402,W503,W504 bluepymm

0 commit comments

Comments
 (0)