diff options
| author | Stanislaw Pitucha <stanislaw.pitucha@hp.com> | 2013-01-23 13:11:41 +0000 |
|---|---|---|
| committer | Stanislaw Pitucha <stanislaw.pitucha@hp.com> | 2013-01-23 13:11:41 +0000 |
| commit | 8087e8d6109ee7856dc0310a4104b6b6178addbd (patch) | |
| tree | 44a9bba3653e29ed24ac4d4cfd71b55c9407df3f | |
| parent | a8a0826ea618266bb2cb0235c3efb354abb02c2e (diff) | |
Add version constraint for coverage
Python coverage lower than 3.6 causes issues when running the whole
test suite. Some arguments are randomly mixed up with script names,
resulting in unittest failures like this:
UnexpectedMethodCallError: Unexpected method call. unexpected:- expected:+
- exists.__call__('/tmp/buildd/.../nova/virt/images.py') -> None
+ exists.__call__('/some/path') -> True
Change-Id: Iadb6d046e3acc75c6ed5abffcfc1abda82aeee4f
| -rw-r--r-- | tools/test-requires | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test-requires b/tools/test-requires index bc279166e..e6c32eaea 100644 --- a/tools/test-requires +++ b/tools/test-requires @@ -1,7 +1,7 @@ # Packages needed for dev testing distribute>=0.6.24 -coverage +coverage>=3.6 discover feedparser fixtures>=0.3.12 |
