From 3db115b89731357bd6183b9d6cd0e3aa2ee51bfe Mon Sep 17 00:00:00 2001 From: Dazzla Date: Wed, 10 Oct 2018 14:04:14 +0100 Subject: [PATCH] Fixes underscore bug in task names Underscores are no longer valid as part of task names --- tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks.py b/tasks.py index d34c6b3..37e4494 100644 --- a/tasks.py +++ b/tasks.py @@ -3,13 +3,13 @@ @task -def test_consumer(ctx): +def testconsumer(ctx): """Runs the consumer pact tests""" ctx.run('pytest src') @task -def test_provider(ctx): +def testprovider(ctx): """Validate pact files against server""" import threading