Skip to content

Commit

Permalink
Allow --testmon-nocollect and --testmon-noselect at the same time so …
Browse files Browse the repository at this point in the history
…that tests are only reordered. re #227
  • Loading branch information
tarpas committed Nov 3, 2023
1 parent 1421fbb commit 14b527a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion testmon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""PYTEST_DONT_REWRITE"""
VERSION = "2.0.15"
VERSION = "2.1.0dev1"
3 changes: 0 additions & 3 deletions testmon/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ def _get_notestmon_reasons(options):
if options["no-testmon"]:
return "deactivated through --no-testmon"

if options["testmon_noselect"] and options["testmon_nocollect"]:
return "deactivated, both noselect and nocollect options used"

if not any(
options.get(t, False)
for t in [
Expand Down

0 comments on commit 14b527a

Please sign in to comment.