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 80d4e67 commit 5394475Copy full SHA for 5394475
unit-test.sh
@@ -1,8 +1,14 @@
1
#!/usr/bin/env bash
2
3
+export REPORT_SELF_HOSTED_ISSUES=0 # will be over-ridden in the relevant test
4
+
5
FORCE_CLEAN=1 "./scripts/reset.sh"
6
fail=0
7
for test_file in _unit-test/*-test.sh; do
8
+ if [ "$1" -a "$1" != "$test_file" ]; then
9
+ echo "🙊 Skipping $test_file ..."
10
+ continue
11
+ fi
12
echo "🙈 Running $test_file ..."
13
$test_file
14
if [ $? != 0 ]; then
0 commit comments