Fix calls to _run_flask_command

master
Steven Loria 8 years ago
parent 42f29306b4
commit d23a3c455b
  1. 5
      README.rst
  2. 4
      tasks.py

@ -70,6 +70,11 @@ BSD licensed.
Changelog
---------
0.10.1 (08/28/2016)
*******************
- Fix ``invoke test`` command.
0.10.0 (08/28/2016)
*******************

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

Loading…
Cancel
Save