Skip to content

Commit b4fbb69

Browse files
committed
Fix python tests requirements
``` twisted 20.3.0 has requirement attrs>=19.2.0, but you'll have attrs 18.2.0 which is incompatible ``` This patch updates python requirements to try to fix the travis CI.
1 parent 55fdfb9 commit b4fbb69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

requirements/requirements-test.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-r requirements.txt
22

3-
pytest==3.4.0
43
coverage<4.4
5-
pytest-cov==2.4.0
4+
pytest>=3.4.0
5+
pytest-cov>=2.4.0
66
codeclimate-test-reporter==0.2.3
7-
attrs>=17.4.0
7+
attrs>=19.2.0

0 commit comments

Comments
 (0)