From debfe708d02887970724cab38ca79768c9a41c6f Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 16 Aug 2017 11:56:24 -0700 Subject: [PATCH] test-all: Fix buggy PYTHONWARNINGS invocation. Shell only sets variables if they're the first thing on a line. --- tools/test-all | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/test-all b/tools/test-all index f238449704..71839057b0 100755 --- a/tools/test-all +++ b/tools/test-all @@ -42,8 +42,8 @@ run ./tools/run-mypy # travis/backend run ./tools/lint --pep8 $FORCEARG run ./manage.py makemessages --locale en -run PYTHONWARNINGS=ignore ./tools/check-capitalization --no-generate -run PYTHONWARNINGS=ignore ./tools/check-frontend-i18n --no-generate +run env PYTHONWARNINGS=ignore ./tools/check-capitalization --no-generate +run env PYTHONWARNINGS=ignore ./tools/check-frontend-i18n --no-generate run ./tools/test-tools run ./tools/test-backend $FORCEARG run ./tools/test-migrations