aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 54c988ae43353126098ea80172357be14a07b7d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
## Run code formatting check with Black
run-black:
	@echo ">>> Running Black..."
	poetry run black gdpr_obfuscator test

## Run test coverage check, omitting unnecessary files
check-coverage:
	@echo ">>> Running test coverage..."
	poetry run coverage run -m pytest --testdox && poetry run coverage report -m

## Run all checks
run-checks: run-black check-coverage
git.ajschof.me — hosted by ajschofield — powered by cgit