update Makefile

This commit is contained in:
Sam 2022-03-27 09:48:36 +02:00
parent ad2f57c59c
commit 64a2e740de

View File

@ -9,7 +9,9 @@ make-p:
build-client: lint-client
cd fittrackee_client && $(NPM) build
check-all: lint-all type-check test-python test-client
check-all: lint-all type-check test-all
check-client: lint-client test-client
check-python: lint-python type-check test-python
@ -167,6 +169,8 @@ set-admin:
test-e2e:
$(PYTEST) e2e --driver firefox $(PYTEST_ARGS)
test-all: test-client test-python
test-e2e-client:
E2E_ARGS=client $(PYTEST) e2e --driver firefox $(PYTEST_ARGS)