Skip to content

Commit 050d199

Browse files
CI: Fix coverage job for tox 4
1 parent 061b419 commit 050d199

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

bluepyparallel/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version of the bluepyparallel package."""
22

3-
VERSION = "0.0.8" # pragma: no cover
3+
VERSION = "0.0.9.dev0" # pragma: no cover

tox.ini

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ envlist =
1313
minversion = 3.18
1414

1515
[testenv]
16+
allowlist_externals =
17+
ipcluster
1618
extras = test
1719
setenv =
1820
COVERAGE_FILE = {env:COVERAGE_FILE:.coverage-{envname}}
@@ -43,7 +45,9 @@ commands_post =
4345
[testenv:coverage]
4446
skip_install = true
4547
deps = coverage
46-
allowlist_externals = /bin/bash
48+
allowlist_externals =
49+
/bin/bash
50+
ipcluster
4751
commands =
4852
/bin/bash -c 'coverage combine .coverage-py*'
4953
coverage xml

0 commit comments

Comments
 (0)