Skip to content

Commit

Permalink
Fix valdidation error with test --mode choices (#39)
Browse files Browse the repository at this point in the history
Fix testrunners dict so that "nosetests" is a valid option.
  • Loading branch information
shudgston authored Oct 22, 2019
1 parent 3ffb41b commit eda676d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cirrus/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def main():
opts = build_parser(sys.argv[1:])
config = load_configuration()
testrunners = {
'nosetest': nose_run,
'nosetests': nose_run,
'pytest': pytest_run,
'tox': tox_run
}
Expand Down

0 comments on commit eda676d

Please sign in to comment.