Update httpretty to 0.6.5

(but no further due to https://github.com/gabrielfalcao/HTTPretty/issues/114)
This commit is contained in:
sneakypete81 2013-10-29 09:18:21 +00:00
parent ed5cc0ac11
commit 99d0a8066b
2 changed files with 6 additions and 8 deletions

View file

@ -2,10 +2,6 @@ from __future__ import unicode_literals
import json
import httpretty
# TEMP: Temporary hack until httpretty string checking is fixed
if httpretty.compat.PY3:
httpretty.core.basestring = (bytes, str)
try:
import unittest2 as unittest # Python2.6
except ImportError:

10
tox.ini
View file

@ -2,17 +2,19 @@
envlist = py26, py27, py33
[testenv]
commands = python -m unittest discover --catch tests/unit
commands = python -m unittest discover tests/unit
deps =
mock >= 1.0.0
httpretty >= 0.6.1
# Hold httpretty at 0.6.5 until https://github.com/gabrielfalcao/HTTPretty/issues/114 is resolved
httpretty == 0.6.5
ddt >= 0.3.0
[testenv:py26]
commands = unit2 discover --catch tests/unit
commands = unit2 discover tests/unit
deps =
mock >= 1.0.0
httpretty >= 0.6.1
# Hold httpretty at 0.6.5 until https://github.com/gabrielfalcao/HTTPretty/issues/114 is resolved
httpretty == 0.6.5
ddt >= 0.3.0
unittest2
discover