diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-08-19 20:21:27 +0100 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-08-19 20:21:27 +0100 |
commit | cd9cf38ee9e3f760a0524646661c91b706de63ac (patch) | |
tree | aec48032c118e9e74900f69978eeec32d265ff7d /ptr.py | |
parent | cc9cbb035f0fb4d2b70fddedde63940c711fb6ef (diff) | |
download | pytest-runner-cd9cf38ee9e3f760a0524646661c91b706de63ac.tar.gz |
Fix error in handling of --extras2.6.2
Diffstat (limited to 'ptr.py')
-rw-r--r-- | ptr.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -68,7 +68,7 @@ class PyTest(orig.test): extras_require = self.distribution.extras_require or {} for spec, reqs in extras_require.items(): name, sep, marker = spec.partition(':') - if not self.marker_passes(marker): + if marker and not self.marker_passes(marker): continue # always include unnamed extras if not name or self.extras: |