We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 048413e commit 6c63ad9Copy full SHA for 6c63ad9
docker/files/run_pytests.sh
@@ -40,4 +40,6 @@ fi
40
# Collect crashfiles
41
find ${WORKDIR} -name "crash-*" -maxdepth 1 -exec mv {} ${WORKDIR}/crashfiles/ \;
42
43
+echo "Unit tests finished with exit code ${exit_code}"
44
exit ${exit_code}
45
+
nipype/tests/test_nipype.py
@@ -6,4 +6,8 @@ def test_nipype_info():
6
get_info()
7
except Exception as e:
8
exception_not_raised = False
9
- assert exception_not_raised
+ assert exception_not_raised
10
11
+def test_fail_always():
12
+ assert False
13
0 commit comments