diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2023-07-13 17:58:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-13 17:58:26 +0200 |
commit | d5ee076017e4a0812b21bbaf6ea03b6392362945 (patch) | |
tree | 8c140931bc63c543c4f7fe38f861ee2515ba51bd | |
parent | 1d40f86d580547dddf18edf8a3025ddafdf457c0 (diff) | |
parent | 48e47c6a46aebb9103edf92179e8180cb12cc5ee (diff) | |
download | nextcloud-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-x | tests/drone-run-php-tests.sh | 2 |
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 |