summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKet3r <github@peter-kempter.de>2021-09-29 21:04:14 +0200
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-09-30 10:21:44 +0800
commit5e73cabd041f45337b270d5e78674d88448929e6 (patch)
treec05060c7b2b125af158f3454ea2d9fb458fcc8dc
parent1746b971387eccfc6fb4e34d3c334079bbb14b2e (diff)
downloadgitpython-5e73cabd041f45337b270d5e78674d88448929e6.tar.gz
Fix broken test requirements
The ddt package changed the function signature in version 1.4.3 from idata(iterable) to idata(iterable, index_len). Hopefully this was just a mistake and the new argument will be optional in future versions (see issue datadriventests/ddt#97)
-rw-r--r--test-requirements.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-requirements.txt b/test-requirements.txt
index deaafe21..d5d2346a 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -1,4 +1,4 @@
-ddt>=1.1.1
+ddt>=1.1.1, !=1.4.3
mypy
flake8