/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-08-21 23:29:55 UTC
  • mfrom: (7078.1.1 ignore-resourcewarning)
  • Revision ID: breezy.the.bot@gmail.com-20180821232955-cndnx6hqcw92klyi
Ignore ResourceWarning on Python 3, too.

Merged from https://code.launchpad.net/~jelmer/brz/python3-ignore-resourcewarning/+merge/353528

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
        BRZ_PLUGIN_PATH=$(BRZ_PLUGIN_PATH) $(PYTHON) -Werror -Wignore::FutureWarning -Wignore::DeprecationWarning -Wignore::ImportWarning -Wignore::ResourceWarning -O \
101
101
          ./brz selftest -v --parallel=fork -Oselftest.timeout=120 --subunit2 \
102
102
          | subunit-filter -s --passthrough --rename "^" "python2."; \
103
 
          BRZ_PLUGIN_PATH=$(BRZ_PLUGIN_PATH) $(PYTHON3) -Werror -Wignore::FutureWarning -Wignore::DeprecationWarning -Wignore::PendingDeprecationWarning -Wignore::ImportWarning -O \
 
103
          BRZ_PLUGIN_PATH=$(BRZ_PLUGIN_PATH) $(PYTHON3) -Werror -Wignore::FutureWarning -Wignore::DeprecationWarning -Wignore::PendingDeprecationWarning -Wignore::ImportWarning -Wignore::ResourceWarning -O \
104
104
          ./brz selftest -v --parallel=fork -Oselftest.timeout=120 --load-list=python3.passing --subunit2 \
105
105
          | subunit-filter -s --passthrough --rename "^" "python3."
106
106