From 8dd78f8e1e85a13959ce14c227a07a5a9d5c551d Mon Sep 17 00:00:00 2001 From: Chen Asraf Date: Sun, 9 Nov 2025 01:52:18 +0200 Subject: [PATCH] fix: test-docker make target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6dd6965..64b6c4f 100644 --- a/Makefile +++ b/Makefile @@ -205,7 +205,7 @@ test: composer # - Run PHP unit tests inside a Nextcloud Docker container .PHONY: test-docker test-docker: - docker-compose exec nextcloud phpunit -c apps-shared/autocurrency/tests/phpunit.xml + docker-compose exec nextcloud phpunit -c apps-shared/$(app_name)/tests/phpunit.xml # lint: # - Lint JS via pnpm and PHP via composer script "lint"