Skip to content

Commit

Permalink
fix #10029 broken setup.py test
Browse files Browse the repository at this point in the history
  • Loading branch information
Vasyl Dizhak committed Apr 5, 2017
1 parent 5d49840 commit 3b877b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ clean-test:
rm -fr htmlcov/

test:
python setup.py test --pytest-args="tests django_extensions --ds=tests.testapp.settings --cov=django_extensions"
python setup.py test

coverage:
coverage run --source django_extensions setup.py test
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class PyTest(TestCommand):

def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
self.pytest_args = 'tests django_extensions --ds=tests.testapp.settings --cov=django_extensions'

def finalize_options(self):
TestCommand.finalize_options(self)
Expand Down

0 comments on commit 3b877b7

Please sign in to comment.