summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 849481f0952163652f3a055cb1f7fabfd28bd73c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[tox]
envlist = py27,py34
recreate = True

[testenv]
commands = python -m nose {posargs:tests}
deps = -r{toxinidir}/test-requirements.txt
    -r{toxinidir}/requirements.txt

# https://github.com/gabrielfalcao/HTTPretty/issues/223
setenv =
    LC_ALL = en_US.utf-8

[testenv:py26]
commands = nosetests {posargs:tests}
deps =
     contextlib2
     httpretty>=0.7.1
     mock
     nose
     pep8==1.5.7
     pyflakes
setenv =
    LC_ALL = C