We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f96b08 commit 6320e8eCopy full SHA for 6320e8e
1 file changed
plugins/mamba-cp/tox.ini
@@ -12,7 +12,10 @@ commands =
12
# install the dependencies here to ensure
13
# the order
14
pip install -e {toxinidir}/../framework
15
- pytest {posargs:tests}
+ # if all tests skipped
16
+ # pytest should not report fail
17
+ bash -c 'pytest {posargs:tests}; ec=$?; [ "$ec" = "5" ] && exit 0 || exit $ec'
18
+allowlist_externals = bash
19
20
[testenv:lint]
21
description = run linters
0 commit comments