aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2023-07-13 17:58:26 +0200
committerGitHub <noreply@github.com>2023-07-13 17:58:26 +0200
commitd5ee076017e4a0812b21bbaf6ea03b6392362945 (patch)
tree8c140931bc63c543c4f7fe38f861ee2515ba51bd
parent1d40f86d580547dddf18edf8a3025ddafdf457c0 (diff)
parent48e47c6a46aebb9103edf92179e8180cb12cc5ee (diff)
downloadnextcloud-server-d5ee076017e4a0812b21bbaf6ea03b6392362945.tar.gz
nextcloud-server-d5ee076017e4a0812b21bbaf6ea03b6392362945.zip
Merge pull request #39329 from nextcloud/feat/phpunit-for-css-generated-file
fix: also run phpunit on `apps/theming/css` modified files
-rwxr-xr-xtests/drone-run-php-tests.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/drone-run-php-tests.sh b/tests/drone-run-php-tests.sh
index ff4737b77a0..aad781a1c7b 100755
--- a/tests/drone-run-php-tests.sh
+++ b/tests/drone-run-php-tests.sh
@@ -24,4 +24,6 @@ echo "========================="
[[ $(git diff --name-only origin/$DRONE_TARGET_BRANCH...$DRONE_COMMIT_SHA | grep -c "3rdparty") -gt 0 ]] && echo "3rdparty is modified" && exit 0
+[[ $(git diff --name-only origin/$DRONE_TARGET_BRANCH...$DRONE_COMMIT_SHA | grep -c "apps/theming/css") -gt 0 ]] && echo "theming css is modified" && exit 0
+
exit 1