mirror of https://github.com/zulip/zulip.git
34 lines
1.0 KiB
Bash
Executable File
34 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
source tools/travis/activate-venv
|
|
echo "Test suite is running under $(python --version)."
|
|
|
|
set -e
|
|
set -x
|
|
|
|
./tools/lint --backend --no-gitlint # gitlint disabled because flaky
|
|
./tools/test-tools
|
|
./tools/test-backend --coverage
|
|
|
|
# We run mypy after the backend tests so we get output from the
|
|
# backend tests, which tend to uncover more serious problems, first.
|
|
./tools/run-mypy --version
|
|
./tools/run-mypy
|
|
|
|
./tools/test-migrations
|
|
./tools/setup/optimize-svg
|
|
# tabbott re-enabled test-documentation link checking, due to bugs slipping through.
|
|
./tools/test-documentation # ${CIRCLECI:+--skip-check-links}
|
|
./tools/test-help-documentation
|
|
./tools/test-api
|
|
./tools/test-locked-requirements
|
|
./tools/test-run-dev
|
|
|
|
# This test has been persistently flaky at like 1% frequency, is slow,
|
|
# and is for a very specific single feature, so we don't run it by default:
|
|
# ./tools/test-queue-worker-reload
|
|
|
|
# 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.
|