aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2013-12-23 16:40:09 -0800
committerPaul Kehrer <paul.l.kehrer@gmail.com>2013-12-23 16:40:09 -0800
commitb148157e398f2e4516a97cfdd5964ede9bf0ed02 (patch)
tree59f1f58698712d71ce997bc3293b5aef87b1d72c
parent4dbed96fb73a4899a902d35086b893bfb96ebcca (diff)
parent93a0b2f1f7ec9fcc2c0f5327f4f88378ae19561e (diff)
downloadcryptography-b148157e398f2e4516a97cfdd5964ede9bf0ed02.tar.gz
cryptography-b148157e398f2e4516a97cfdd5964ede9bf0ed02.tar.bz2
cryptography-b148157e398f2e4516a97cfdd5964ede9bf0ed02.zip
Merge pull request #339 from dreid/pytest-s
Run py.test with capture=no for more faster.
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 39fe024f..61143112 100644
--- a/tox.ini
+++ b/tox.ini
@@ -7,7 +7,7 @@ deps =
coverage
pretend
commands =
- coverage run --source=cryptography/,tests/ -m pytest --strict
+ coverage run --source=cryptography/,tests/ -m pytest --capture=no --strict
coverage report -m
[testenv:docs]
@@ -24,7 +24,7 @@ commands =
# Temporarily disable coverage on pypy because of performance problems with
# coverage.py on pypy.
[testenv:pypy]
-commands = py.test
+commands = py.test --capture=no
[testenv:pep8]
deps = flake8