summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvrde <agranzot@gmail.com>2018-04-27 00:09:28 +0200
committervrde <agranzot@gmail.com>2018-04-27 15:00:52 +0200
commitf5ee7d01be768b0138fbb28034d5690061aa1695 (patch)
tree61f1e298815de9c8ae9254d03bcde2165cf96b52
parent41ac85cd6b68a0e6b1a53e79ae497e315008f12a (diff)
downloadpycco-f5ee7d01be768b0138fbb28034d5690061aa1695.tar.gz
Add compatibility for Python 2.7
-rw-r--r--requirements.test.txt3
-rw-r--r--tests/test_pycco.py5
2 files changed, 6 insertions, 2 deletions
diff --git a/requirements.test.txt b/requirements.test.txt
index 5db5948..6c8b8e3 100644
--- a/requirements.test.txt
+++ b/requirements.test.txt
@@ -1,3 +1,4 @@
hypothesis==1.18.1
-pytest-cov==2.2.0
+pytest-cov~=2.0
coveralls==1.1
+mock~=2.0
diff --git a/tests/test_pycco.py b/tests/test_pycco.py
index 1be2683..cae1888 100644
--- a/tests/test_pycco.py
+++ b/tests/test_pycco.py
@@ -4,7 +4,10 @@ import tempfile
import time
import os.path
import pytest
-from unittest.mock import patch
+try:
+ from unittest.mock import patch
+except ImportError:
+ from mock import patch
from hypothesis import given, example, assume
from hypothesis.strategies import lists, text, booleans, choices, none