From eda676daa4a89fecad363523ac916cc543629451 Mon Sep 17 00:00:00 2001 From: Sean Hudgston Date: Tue, 22 Oct 2019 14:10:30 -0400 Subject: [PATCH 1/2] 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 } From 58be15bf222259d2680e278819f20a9a36d29ddd Mon Sep 17 00:00:00 2001 From: Sean Hudgston Date: Tue, 22 Oct 2019 14:10:55 -0400 Subject: [PATCH 2/2] cirrus release: new release created for release/3.1.2 --- cirrus.conf | 2 +- src/cirrus/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cirrus.conf b/cirrus.conf index cba5c5c..0738291 100644 --- a/cirrus.conf +++ b/cirrus.conf @@ -1,6 +1,6 @@ [package] name = cirrus-cli -version = 3.1.1 +version = 3.1.2 description = cirrus development and build git extensions organization = cloudant version_file = src/cirrus/__init__.py diff --git a/src/cirrus/__init__.py b/src/cirrus/__init__.py index ab7d2a4..f4a5960 100644 --- a/src/cirrus/__init__.py +++ b/src/cirrus/__init__.py @@ -18,5 +18,5 @@ See the License for the specific language governing permissions and limitations under the License. """ -__version__="3.1.1" +__version__="3.1.2"