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')