summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-08-28 17:28:53 -0400
committerJason R. Coombs <jaraco@jaraco.com>2014-08-28 17:28:53 -0400
commita1d4fca9569fdb03137dc825e426bf8fb2484321 (patch)
tree6011c4e616fd09c3e7e950a8ba68d9e6e1406a69
parent91a53c05ed84b52ca2e1ae5d009144233c8bd0fe (diff)
downloadpytest-runner-a1d4fca9569fdb03137dc825e426bf8fb2484321.tar.gz
Fix --extras on Python 32.1.1
-rw-r--r--ptr.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ptr.py b/ptr.py
index 4636fe3..8d37f0b 100644
--- a/ptr.py
+++ b/ptr.py
@@ -39,8 +39,8 @@ class PyTest(orig.test):
if self.distribution.tests_require:
self.distribution.fetch_build_eggs(self.distribution.tests_require)
if self.distribution.extras_require and self.extras:
- map(self.distribution.fetch_build_eggs,
- self.distribution.extras_require.values())
+ list(map(self.distribution.fetch_build_eggs,
+ self.distribution.extras_require.values()))
if self.dry_run:
self.announce('skipping tests (dry run)')
return