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 d8e13ce commit 684a883Copy full SHA for 684a883
.github/jobs/unit-tests.sh
@@ -37,6 +37,13 @@ fi
37
set +e
38
php $phpcov webapp/bin/phpunit -c webapp/phpunit.xml.dist webapp/tests/$unittest --log-junit "$ARTIFACTS"/unit-tests.xml --colors=never $pcov > "$ARTIFACTS"/phpunit.out
39
UNITSUCCESS=$?
40
+
41
+# Make sure the log exists before copy
42
+touch ${DIR}/webapp/var/log/test.log
43
+cp ${DIR}/webapp/var/log/test.log "$ARTIFACTS"/test.log
44
45
+exit 0
46
47
set -e
48
CNT=0
49
THRESHOLD=32
.github/workflows/unit-tests.yml
@@ -57,4 +57,4 @@ jobs:
57
if: ${{ !cancelled() }}
58
with:
59
files: |
60
- /tmp/artifacts/unit-tests.xml
+ unit-tests.xml
0 commit comments