Skip to content

Commit 9ca7915

Browse files
author
BenjamenMeyer
committed
Merge branch 'master' into enhancement_errors_update
Conflicts: tools/test-requirements.txt - Added Upate for 'responses', version 0.4.0 supports Py3 - Updated minimum coverage to 88%
2 parents 2aa943c + d68fca6 commit 9ca7915

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ cover-package=stackinabox
66
cover-erase=1
77
cover-inclusive=true
88
cover-branches=true
9-
cover-min-percentage=83
9+
cover-min-percentage=88

stackinabox/tests/test_responses.py

-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
logger = logging.getLogger(__name__)
1919

2020

21-
@unittest.skipIf(six.PY3, 'Responses fails on PY3')
2221
def test_basic_responses():
2322

2423
@responses.activate
@@ -34,7 +33,6 @@ def run():
3433
run()
3534

3635

37-
@unittest.skipIf(six.PY3, 'Responses fails on PY3')
3836
def test_advanced_responses():
3937

4038
def run():

tools/test-requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
coverage
22
ddt
3-
httpretty==0.8.8
3+
httpretty==0.8.6
44
nose
55
nose-exclude
66
pep8
77
requests
88
requests-mock
9-
responses
9+
responses>=0.4.0
1010
six

tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ commands = nosetests {posargs}
1212
[testenv:py34]
1313
deps = -r{toxinidir}/tools/test-requirements.txt
1414
commands = nosetests {posargs}
15+
setenv = VIRTUAL_ENV={envdir} LC_ALL = en_US.utf-8
1516

1617
[testenv:pep8]
1718
deps = setuptools>=1.1.6

0 commit comments

Comments
 (0)