diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-02-08 16:58:53 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-02-08 16:58:53 -0500 |
commit | bb6b39bea530bdff158330665e93a9ee13f8c771 (patch) | |
tree | 24c40cc57db9a4b492c0aaa488c7bd21c1845021 /ptr.py | |
parent | 647f5d9a352919aedc99a6b69f22f85cb7f36455 (diff) | |
download | pytest-runner-bb6b39bea530bdff158330665e93a9ee13f8c771.tar.gz |
Fix issue in marker evaluation logic. Fixes #28.
Diffstat (limited to 'ptr.py')
-rw-r--r-- | ptr.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -105,7 +105,7 @@ class PyTest(orig.test): reqs for (name, sep, marker), reqs in spec_extras # never include extras that fail to pass marker eval - if marker and not self.marker_passes(marker) + if self.marker_passes(marker) # include unnamed extras or all if self.extras indicated and (not name or self.extras) ) |