File: Makefile

package info (click to toggle)
python-pipdeptree 0.13.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 176 kB
  • sloc: python: 713; makefile: 35; sh: 19
file content (20 lines) | stat: -rw-r--r-- 414 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

clean:
	find . -name '*.pyc' -exec rm -f {} +
	find . -name '*.pyo' -exec rm -f {} +
	find . -name '*~' -exec rm -f {} +
	find . -name '__pycache__' -exec rmdir {} +

clean-env:
	rm -rf tests/virtualenvs/{testenv,cyclicenv,unsatisfiedenv}
	rm tests/virtualenvs/*.pickle

test-env:
	pip install tox
	cd tests/virtualenvs; make testenv cyclicenv unsatisfiedenv

test: test-env
	tox -e py27

test-tox: test-env
	tox