mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 12:33:40 +00:00
This should automatically catch mistakes where someone updates the database models but forgets to generate migrations afterwards.
10 lines
186 B
Bash
Executable File
10 lines
186 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
source /srv/zulip-venv/bin/activate
|
|
export PATH=$PATH:/srv/zulip-venv/bin
|
|
./tools/lint-all
|
|
./tools/test-backend
|
|
./tools/test-management
|
|
./tools/test-migrations
|