/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-07-01 11:24:23 UTC
  • mfrom: (7015.2.1 no-warnings)
  • Revision ID: breezy.the.bot@gmail.com-20180701112423-a2kayo1ntirjzyz4
Ignore ResourceWarning on travis and in check-ci.

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

Merged from https://code.launchpad.net/~jelmer/brz/no-warnings/+merge/348798

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
        # https://github.com/paramiko/paramiko/issues/713 is not a concern
97
97
        # anymore -- vila 2017-05-24
98
98
        set -o pipefail; \
99
 
        BRZ_PLUGIN_PATH=$(BRZ_PLUGIN_PATH) $(PYTHON) -Werror -Wignore::FutureWarning -Wignore::DeprecationWarning -Wignore::ImportWarning -O \
 
99
        BRZ_PLUGIN_PATH=$(BRZ_PLUGIN_PATH) $(PYTHON) -Werror -Wignore::FutureWarning -Wignore::DeprecationWarning -Wignore::ImportWarning -Wignore::ResourceWarning -O \
100
100
          ./brz selftest -v --parallel=fork -Oselftest.timeout=120 --subunit2 \
101
101
          | subunit-filter -s --passthrough --rename "^" "python2."; \
102
102
          BRZ_PLUGIN_PATH=$(BRZ_PLUGIN_PATH) $(PYTHON3) -Werror -Wignore::FutureWarning -Wignore::DeprecationWarning -Wignore::PendingDeprecationWarning -Wignore::ImportWarning -O \