mirror of
https://github.com/zulip/zulip.git
synced 2025-11-22 15:31:20 +00:00
- Raise exception only for http 404 error rensponse, for other http error codes used logging to notify devs about wrong links.
17 lines
315 B
Bash
Executable File
17 lines
315 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source tools/travis/activate-venv
|
|
|
|
set -e
|
|
set -x
|
|
|
|
./tools/lint-all
|
|
./tools/test-backend --coverage --no-verbose-coverage
|
|
./tools/test-management
|
|
./tools/test-migrations
|
|
./tools/test-run-dev
|
|
./tools/test-documentation
|
|
# Some test suites disabled in CI for being flaky
|
|
#./tools/test-queue-worker-reload
|
|
|