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 18f6780 commit 3a564c3Copy full SHA for 3a564c3
bin/testing-entrypoint.sh
@@ -27,9 +27,6 @@ if [ ! -f "${PROJECT_DIR}/c3.php" ]; then
27
curl -L 'https://raw.github.com/Codeception/c3/2.0/c3.php' > "${PROJECT_DIR}/c3.php"
28
fi
29
30
-echo 'Setting Codeception output directory permissions'.
31
-chmod 777 -R ${TESTS_OUTPUT}/*
32
-
33
# Install dependencies
34
COMPOSER_MEMORY_LIMIT=-1 composer install --prefer-source --no-interaction
35
@@ -52,3 +49,7 @@ for suite in "${target_suites[@]}"; do
52
49
53
50
done
54
51
+if [ -f "${TESTS_OUTPUT}/coverage.xml" ]; then
+ echo 'Setting Codeception output directory permissions'.
+ chmod 777 -R ${TESTS_OUTPUT}/coverage.xml
55
+fi
0 commit comments