-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
46 lines (34 loc) · 952 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
TEST = pytest
TEST_DIR = tests/
TEST_RUN = $(TEST) $(TEST_DIR)
.PHONY: default $(MAKECMDGOALS)
help:
@echo "make check"
@echo " run lint and tests"
@echo "make help"
@echo " see this help"
@echo "make lint"
@echo " run complete pre-commit/pre-push lint"
@echo "make snyk"
@echo " run Snyk check for vulnerabilities"
@echo "make test"
@echo " run tests"
@echo "make test-with-coverage"
@echo " run tests with coverage output to console"
@echo "make test-with-coverage-html"
@echo " run tests with coverage output to html file"
check: lint test
lint:
pre-commit run -a
snyk:
snyk test --all-projects --policy-path=.snyk
test:
$(TEST_RUN)
test-with-coverage:
$(TEST_RUN) --junitxml=pytest.xml --cov-report=term-missing:skip-covered --cov=yamx | tee pytest-coverage.txt
test-with-coverage-html:
$(TEST_RUN) --cov=yamx --cov-report=html
update-deps:
poetry update
publish:
poetry publish --build