Merge lp:~jelmer/brz/no-warnings into lp:brz

Proposed by Jelmer Vernooij
Status: Merged
Approved by: Jelmer Vernooij
Approved revision: no longer in the source branch.
Merge reported by: The Breezy Bot
Merged at revision: not available
Proposed branch: lp:~jelmer/brz/no-warnings
Merge into: lp:brz
Diff against target: 25 lines (+2/-2)
2 files modified
.travis.yml (+1/-1)
Makefile (+1/-1)
To merge this branch: bzr merge lp:~jelmer/brz/no-warnings
Reviewer Review Type Date Requested Status
Martin Packman Approve
Review via email: mp+348798@code.launchpad.net

Description of the change

Ignore ResourceWarning on travis and in check-ci.

We're currently running over their 4Mb output limit.

To post a comment you must log in.
Revision history for this message
Martin Packman (gz) wrote :

Merci.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file '.travis.yml'
2--- .travis.yml 2018-05-19 12:35:45 +0000
3+++ .travis.yml 2018-07-01 10:55:07 +0000
4@@ -22,7 +22,7 @@
5
6 script:
7 - make docs $EXTRA_MAKE_ARGS
8- - BRZ_PLUGIN_PATH=-site:-user python -Werror -Wignore::ImportWarning -Wignore::PendingDeprecationWarning -Wignore::DeprecationWarning ./brz selftest --parallel=fork $SELFTEST_OPTIONS
9+ - BRZ_PLUGIN_PATH=-site:-user python -Werror -Wignore::ImportWarning -Wignore::PendingDeprecationWarning -Wignore::DeprecationWarning -Wignore::ResourceWarning ./brz selftest --parallel=fork $SELFTEST_OPTIONS
10
11 install:
12 - sudo apt install python-all-dev python3-all-dev subunit
13
14=== modified file 'Makefile'
15--- Makefile 2018-06-25 20:47:12 +0000
16+++ Makefile 2018-07-01 10:55:07 +0000
17@@ -96,7 +96,7 @@
18 # https://github.com/paramiko/paramiko/issues/713 is not a concern
19 # anymore -- vila 2017-05-24
20 set -o pipefail; \
21- BRZ_PLUGIN_PATH=$(BRZ_PLUGIN_PATH) $(PYTHON) -Werror -Wignore::FutureWarning -Wignore::DeprecationWarning -Wignore::ImportWarning -O \
22+ BRZ_PLUGIN_PATH=$(BRZ_PLUGIN_PATH) $(PYTHON) -Werror -Wignore::FutureWarning -Wignore::DeprecationWarning -Wignore::ImportWarning -Wignore::ResourceWarning -O \
23 ./brz selftest -v --parallel=fork -Oselftest.timeout=120 --subunit2 \
24 | subunit-filter -s --passthrough --rename "^" "python2."; \
25 BRZ_PLUGIN_PATH=$(BRZ_PLUGIN_PATH) $(PYTHON3) -Werror -Wignore::FutureWarning -Wignore::DeprecationWarning -Wignore::PendingDeprecationWarning -Wignore::ImportWarning -O \

Subscribers

People subscribed via source and target branches