We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b4d569 commit 78c1bc3Copy full SHA for 78c1bc3
Makefile
@@ -19,6 +19,8 @@ logs:
19
20
test: up test-e2e test-integration test-unit
21
22
+test-coverage: up coverage
23
+
24
test-e2e:
25
docker-compose run --rm --no-deps --entrypoint=pytest app /tests/e2e -vv -rs
26
@@ -31,7 +33,7 @@ test-unit:
31
33
test-smoke:
32
34
docker-compose run --rm --no-deps --entrypoint=pytest app /tests -vv -rs -m smoke
35
-test-coverage:
36
+coverage:
37
docker-compose run --rm --no-deps --entrypoint=pytest app /tests -q -rs --cov=allocation --cov-report xml:coverage.xml
38
39
check-black:
0 commit comments