zulip/tools/travis/backend

33 lines
867 B
Plaintext
Raw Normal View History

#!/bin/bash
source tools/travis/activate-venv
echo "Test suite is running under $(python --version)."
set -e
set -x
#./tools/lint --backend ${CIRCLECI:+--no-gitlint}
# TEMP: turn off git lint
./tools/lint --backend --no-gitlint
./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
2017-01-26 01:42:17 +01:00
./tools/test-api
./tools/test-locked-requirements
2017-12-29 08:48:44 +01:00
./tools/test-run-dev
./tools/test-queue-worker-reload
2017-12-08 11:29:37 +01:00
./tools/test-slack-importer
# 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.