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 8e5e52e commit b42c8fcCopy full SHA for b42c8fc
nibabel/tests/test_scripts.py
@@ -142,7 +142,10 @@ def test_help():
142
assert_equal(code, 0)
143
assert_re_in(".*%s" % cmd, stdout)
144
assert_re_in(".*Usage", stdout)
145
- assert_equal(stderr, '')
+ # Some third party modules might like to announce some Deprecation
146
+ # etc warnings, see e.g. https://travis-ci.org/nipy/nibabel/jobs/370353602
147
+ if 'warning' not in stderr.lower():
148
+ assert_equal(stderr, '')
149
150
151
@script_test
0 commit comments