summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tasks.py b/tasks.py
index 7dd286ac..2bc7f7fb 100644
--- a/tasks.py
+++ b/tasks.py
@@ -70,10 +70,10 @@ def pytest(context, junit=False, pty=True, base=False, isolated=False):
tests_cmd = command_str + ' tests'
context.run(tests_cmd, pty=pty)
if isolated:
- for root, dirnames, _ in os.walk(str(TASK_ROOT/'isolated_tests')):
+ for root, dirnames, _ in os.walk(str(TASK_ROOT/'tests_isolated')):
for dir in dirnames:
if dir.startswith('test_'):
- context.run(command_str + ' isolated_tests/' + dir)
+ context.run(command_str + ' tests_isolated/' + dir)
namespace.add_task(pytest)