Merge pull request #3897 from alphagov/remove-run-tests

Run tests directly from the Makefile
This commit is contained in:
Ben Thorner
2021-06-16 14:02:44 +01:00
committed by GitHub
2 changed files with 4 additions and 38 deletions

View File

@@ -49,7 +49,10 @@ generate-version-file: ## Generates the app version file
.PHONY: test
test: ## Run tests
./scripts/run_tests.sh
flake8 .
isort --check-only ./app ./tests
npm test
py.test -n auto --maxfail=10 tests/
.PHONY: fix-imports
fix-imports: ## Fix imports using isort