Add ttd directive

This commit is contained in:
Colin Goutte 2024-05-02 14:04:53 +02:00
parent 18464e0b86
commit 34f281b710
1 changed files with 4 additions and 2 deletions

View File

@ -18,7 +18,6 @@ py_install=$(python) -m pip
test: venv
$(pytest) --version || make install
$(pytest) -sv --durations=5 --ignore-glob=sample_* .
qtest: venv
@ -29,6 +28,7 @@ install_dependencies:
$(py_install) install -U pip wheel
$(py_install) install pytest python-dotenv pytest-icdiff
install: venv install_dependencies
venv:
make .venv3.$(minor)
@ -36,7 +36,9 @@ venv:
clean:
rm -fr $(venv)
install: venv install_dependencies
tdd:
ls | entr -d make test
build: install test
scratch: clean install test