mirror of
https://github.com/zulip/zulip.git
synced 2025-11-11 09:27:43 +00:00
This follows up on 207cf6302 from last year to clean up cases that
have apparently popped up since then. Invoking the scripts directly
makes a cleaner command line in any case, and moreover is essential
to how we control running a Zulip install as either Python 2 or 3
(soon, how we always ensure it runs as Python 3.)
One exception: we're currently forcing `provision` in dev to run
Python 3, while still running both Python 2 and Python 3 jobs in CI.
We use a non-shebang invocation to do the forcing of Python 3.
26 lines
753 B
Bash
Executable File
26 lines
753 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source tools/travis/activate-venv
|
|
|
|
set -e
|
|
set -x
|
|
|
|
./tools/lint --pep8 # Include the slow and thus non-default pep8 linter check
|
|
./manage.py makemessages --locale en
|
|
PYTHONWARNINGS=ignore ./tools/check-capitalization --no-generate
|
|
PYTHONWARNINGS=ignore ./tools/check-frontend-i18n --no-generate
|
|
|
|
./tools/test-tools
|
|
./tools/test-backend --coverage
|
|
./tools/test-migrations
|
|
./tools/optimize-svg
|
|
./tools/test-documentation
|
|
./tools/test-help-documentation.py
|
|
./tools/test-api
|
|
#./tools/test-run-dev # Disabled in CI because flaky.
|
|
#./tools/test-queue-worker-reload # Disabled in CI because flaky.
|
|
|
|
# NB: Everything here should be in `tools/test-all`. If there's a
|
|
# reason not to run it there, it should be there as a comment
|
|
# explaining why.
|