mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 05:23:35 +00:00
This test caught a few bugs where refactoring had made management commands fail (and would have caught a few more recent ones). Ideally we'd replace this with a more advanced test that actually tests that the management command do something useful, but it's a start.
9 lines
162 B
Bash
Executable File
9 lines
162 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
|