Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
Added testfixtures as test dependency and removed coverage from pep8 …
Browse files Browse the repository at this point in the history
…environments as dependency
  • Loading branch information
Grokzen committed Aug 27, 2014
1 parent e2cf7ed commit 81f75b1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ envlist = py27, py32, py33, py34, hi27, hi32, hi33, hi34, pep8-py34, pep8-py27
deps =
coverage == 3.7.1
pytest >= 2.5.0
testfixtures == 4.0.1
commands = python {envbindir}/coverage run --source rediscluster -p -m py.test

[testenv:hi27]
Expand All @@ -18,38 +19,41 @@ deps =
coverage == 3.7.1
hiredis >= 0.1.3
pytest >= 2.5.0
testfixtures == 4.0.1

[testenv:hi32]
basepython = python3.2
deps =
coverage == 3.7.1
hiredis >= 0.1.3
pytest >= 2.5.0
testfixtures == 4.0.1

[testenv:hi33]
basepython = python3.3
deps =
coverage == 3.7.1
hiredis >= 0.1.3
pytest >= 2.5.0
testfixtures == 4.0.1

[testenv:hi34]
basepython = python3.4
deps =
coverage == 3.7.1
hiredis >= 0.1.3
pytest >= 2.5.0
testfixtures == 4.0.1

[testenv:pep8-py34]
basepython= python3.4
deps =
coverage == 3.7.1
pep8 == 1.5.7
commands = pep8 --repeat --show-source --exclude=.venv,.tox,dist,docs,build,*.egg,.git --ignore=E501 .

[testenv:pep8-py27]
basepython= python2.7
deps =
coverage == 3.7.1
pep8 == 1.5.7
testfixtures == 4.0.1
commands = pep8 --repeat --show-source --exclude=.venv,.tox,dist,docs,build,*.egg,.git --ignore=E501 .

0 comments on commit 81f75b1

Please sign in to comment.