We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1f5240 commit 1b20a28Copy full SHA for 1b20a28
unit-test.sh
@@ -1,5 +1,11 @@
1
#!/usr/bin/env bash
2
3
+# The test should not be run by regular users. This should only be run in CI or by developers.
4
+if [[ "$CI" != "true" ]]; then
5
+ echo "This script is intended to be run in CI or by developers only."
6
+ exit 1
7
+fi
8
+
9
export REPORT_SELF_HOSTED_ISSUES=0 # will be over-ridden in the relevant test
10
11
FORCE_CLEAN=1 "./scripts/reset.sh"
0 commit comments