2015-07-29 18:37:15 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
find . -name '*.pyc' -exec rm -f {} +
|
|
|
|
find . -name '*.pyo' -exec rm -f {} +
|
|
|
|
find . -name '*~' -exec rm -f {} +
|
2015-12-02 21:43:59 +00:00
|
|
|
find . -name '__pycache__' -exec rmdir {} +
|
2015-07-29 18:37:15 +00:00
|
|
|
|
|
|
|
clean-env:
|
2015-12-02 21:43:59 +00:00
|
|
|
rm -rf tests/virtualenvs/{testenv,cyclicenv,unsatisfiedenv}
|
2015-07-29 18:37:15 +00:00
|
|
|
rm tests/virtualenvs/*.pickle
|
|
|
|
|
|
|
|
test-env:
|
2017-01-25 16:36:18 +00:00
|
|
|
pip install tox
|
2015-12-02 21:43:59 +00:00
|
|
|
cd tests/virtualenvs; make testenv cyclicenv unsatisfiedenv
|
2015-07-29 18:37:15 +00:00
|
|
|
|
|
|
|
test: test-env
|
|
|
|
tox -e py27
|
|
|
|
|
|
|
|
test-tox: test-env
|
|
|
|
tox
|