File: Makefile

package info (click to toggle)
python-pyforge 1.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 464 kB
  • sloc: python: 3,666; makefile: 12; sh: 7
file content (12 lines) | stat: -rw-r--r-- 175 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
default: test

test: env
	.env/bin/pytest -v

env: .env/.up-to-date

.env/.up-to-date: setup.py Makefile
	python -m venv .env
	.env/bin/pip install -e ".[testing]"
	touch $@