Skip to content

Commit

Permalink
updating tox file
Browse files Browse the repository at this point in the history
  • Loading branch information
miki725 committed Feb 27, 2018
1 parent 43a9efe commit ed838db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ help:
@echo "dist - package"

install:
pip install -U -r requirements-dev.txt
pip install -r requirements-dev.txt

install-quite:
pip install -r requirements-dev.txt > /dev/null
Expand All @@ -30,9 +30,9 @@ clean-build:
@rm -rf *.egg-info

clean-pyc:
-@find . -name '*.pyc' -follow -print0 | xargs -0 rm -f
-@find . -name '*.pyo' -follow -print0 | xargs -0 rm -f
-@find . -name '__pycache__' -type d -follow -print0 | xargs -0 rm -rf
-@find . -name '*.pyc' -not -path "./.tox/*" -follow -print0 | xargs -0 rm -f
-@find . -name '*.pyo' -not -path "./.tox/*" -follow -print0 | xargs -0 rm -f
-@find . -name '__pycache__' -type d -not -path "./.tox/*" -follow -print0 | xargs -0 rm -rf

clean-test:
rm -rf .coverage coverage*
Expand Down
7 changes: 2 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
[tox]
envlist =
{py27,py36,pypy}-django{18,11}
py36-django20
# 1.9 breaks pypy3 hence only testing with 18
# scandir fails to install in pypy3 so skippint for now
# {pypy3}-django{18}
{py27,py36,pypy,pypy3}-django{18,11}
{py36,pypy3}-django20

[testenv]
basepython =
Expand Down

0 comments on commit ed838db

Please sign in to comment.