← Back to team overview

sts-sponsors team mailing list archive

[Merge] ~adam-collard/maas-site-manager:bad-phony-make-targets into maas-site-manager:main

 

Adam Collard has proposed merging ~adam-collard/maas-site-manager:bad-phony-make-targets into maas-site-manager:main.

Commit message:
Fix .PHONY directives


Requested reviews:
  MAAS Lander (maas-lander): unittests
  MAAS Committers (maas-committers)

For more details, see:
https://code.launchpad.net/~adam-collard/maas-site-manager/+git/site-manager/+merge/443812
-- 
Your team MAAS Committers is requested to review the proposed merge of ~adam-collard/maas-site-manager:bad-phony-make-targets into maas-site-manager:main.
diff --git a/Makefile b/Makefile
index ad5452d..a453f2b 100644
--- a/Makefile
+++ b/Makefile
@@ -59,7 +59,7 @@ ci-backend-lint:
 
 ci-backend-test:
 	env -C backend tox -e test -- --junit-xml=../junit-backend.xml
-.PHONY: ci-test
+.PHONY: ci-backend-test
 
 ci-backend-format:
 	env -C backend tox -e format
@@ -83,8 +83,8 @@ ci-frontend-lint:
 
 ci-frontend-test:
 	env -C frontend VITEST_JUNIT_SUITE_NAME='maas-site-manager frontend tests' yarnpkg run coverage --silent --reporter=junit --reporter=default --outputFile.junit=../junit-frontend.xml run
-.PHONY: ci-test
+.PHONY: ci-frontend-test
 
 ci-e2e-test:
 	env -C frontend PLAYWRIGHT_JUNIT_OUTPUT_NAME=../junit-e2e.xml npx playwright test --reporter=junit
-.PHONY: ci-test
+.PHONY: ci-e2e-test