From eda676daa4a89fecad363523ac916cc543629451 Mon Sep 17 00:00:00 2001 From: Sean Hudgston Date: Tue, 22 Oct 2019 14:10:30 -0400 Subject: [PATCH] Fix valdidation error with test --mode choices (#39) Fix testrunners dict so that "nosetests" is a valid option. --- src/cirrus/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cirrus/test.py b/src/cirrus/test.py index 06789bc..0395e69 100644 --- a/src/cirrus/test.py +++ b/src/cirrus/test.py @@ -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 }