mirror of https://github.com/zulip/zulip.git
17 lines
385 B
Bash
Executable File
17 lines
385 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source tools/travis/activate-venv
|
|
|
|
set -e
|
|
set -x
|
|
|
|
./tools/lint-all --pep8 # Include the slow and thus non-default pep8 linter check
|
|
./tools/test-backend --coverage
|
|
./tools/test-migrations
|
|
./tools/test-run-dev
|
|
./tools/test-documentation
|
|
./tools/test-help-documentation.py
|
|
./tools/test-api
|
|
# Some test suites disabled in CI for being flaky
|
|
#./tools/test-queue-worker-reload
|