From d23a3c455b847367b0dabbaf23083d6211034122 Mon Sep 17 00:00:00 2001 From: Steven Loria Date: Sun, 28 Aug 2016 22:24:27 -0400 Subject: [PATCH] Fix calls to _run_flask_command --- README.rst | 5 +++++ tasks.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 7f69b43..8960d74 100644 --- a/README.rst +++ b/README.rst @@ -70,6 +70,11 @@ BSD licensed. Changelog --------- +0.10.1 (08/28/2016) +******************* + +- Fix ``invoke test`` command. + 0.10.0 (08/28/2016) ******************* diff --git a/tasks.py b/tasks.py index dd82e34..0fe7158 100644 --- a/tasks.py +++ b/tasks.py @@ -42,5 +42,5 @@ def test(ctx): ctx.run('pip install -r {0} --ignore-installed'.format(REQUIREMENTS), echo=True) os.chdir(COOKIE) - _run_flask_command('lint') - _run_flask_command('test') + _run_flask_command(ctx, 'lint') + _run_flask_command(ctx, 'test')