aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-12-07 08:51:48 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-12-07 08:51:48 -0800
commit9e507d2ab62cec4c9b63b08a6f5ae8656106a162 (patch)
treedcb6a50b4285b40b4179aec39fa2841398e5b10d
parent2cbb78302c42bff04d9f78cd962c1a425cfb11d0 (diff)
parent1ecc7f131178dc65ef6663583bb985537b6eba73 (diff)
downloadcryptography-9e507d2ab62cec4c9b63b08a6f5ae8656106a162.tar.gz
cryptography-9e507d2ab62cec4c9b63b08a6f5ae8656106a162.tar.bz2
cryptography-9e507d2ab62cec4c9b63b08a6f5ae8656106a162.zip
Merge pull request #1491 from reaperhulk/randomize-tests
add a tox target to randomize tests
-rw-r--r--tox.ini7
1 files changed, 7 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 4d4ac20c..151b5530 100644
--- a/tox.ini
+++ b/tox.ini
@@ -63,6 +63,13 @@ deps =
commands =
flake8 .
+[testenv:randomorder]
+deps =
+ {[testenv]deps}
+ pytest-random
+commands =
+ py.test --capture=no --strict --random {posargs}
+
[flake8]
exclude = .tox,*.egg
select = E,W,F,N,I