zulip/tools/travis/backend
Harshit Bansal 5111aeac41 tools: Rewrite test-locked-requirements to be more performant.
This commit modifies `test-locked-requirements` to use some caching
so that we don't need to use the `update-locked-requirements` tool
everytime for checking the validity of locked requirements as it is
slow.

Fixes: #6969.
2017-11-20 15:35:47 -08:00

30 lines
818 B
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
./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 --linecoverage-report
./tools/test-migrations
./tools/optimize-svg
./tools/test-documentation
./tools/test-help-documentation
./tools/test-api
./tools/test-locked-requirements
#./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.