9 lines
227 B
Makefile
9 lines
227 B
Makefile
|
.PHONY: test
|
||
|
|
||
|
test:
|
||
|
pytest -v ./athlete/tests
|
||
|
pytest -v ./medaille/tests
|
||
|
pytest -v ./discipline/tests
|
||
|
|
||
|
clear_before_rendreTP:
|
||
|
rm -rf ./data ./__pycache__ ./athlete/__pycache__ ./medaille/__pycache__ ./discipline/__pycache__
|