From ab5d59cb4330e7bdfa3c18175d9f55c3993920bb Mon Sep 17 00:00:00 2001 From: Jeremy Epstein Date: Wed, 24 Aug 2016 22:10:06 +1000 Subject: [PATCH] pwd in tasks.py to check working dir before running tests --- tasks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks.py b/tasks.py index e5b1c36..5e371e4 100644 --- a/tasks.py +++ b/tasks.py @@ -40,5 +40,6 @@ def test(): """Run lint commands and tests.""" run('pip install -r {0} --ignore-installed'.format(REQUIREMENTS), echo=True) os.chdir(COOKIE) + run('pwd', echo=True) #_run_manage_command('lint') _run_manage_command('test')