Skip to content

Commit

Permalink
py.test flags changed: --ignore=build --verbose --pep8 -rsX
Browse files Browse the repository at this point in the history
  • Loading branch information
rshk committed Nov 24, 2013
1 parent 56ac702 commit 6e11f50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ class PyTest(TestCommand):

def finalize_options(self):
TestCommand.finalize_options(self)
_test_args = [
'--verbose',
'--ignore=build',
'--pep8',
]
_test_args = '--ignore=build --verbose --pep8 -rsX'.split()
extra_args = os.environ.get('PYTEST_EXTRA_ARGS')
if extra_args is not None:
_test_args.extend(extra_args.split())
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ deps =
pytest-cov

commands=
py.test --ignore=build --pep8 -v --cov=smartrpyc --cov-report=term-missing smartrpyc
py.test --ignore=build --verbose --pep8 -rsX --cov=smartrpyc --cov-report=term-missing smartrpyc

[testenv:py32]
commands=
Expand Down

0 comments on commit 6e11f50

Please sign in to comment.