Skip to content

Commit ada27c5

Browse files
committed
Fix bug in tasks.py do to renaming a built-in to prevent shadowing
1 parent a727f5a commit ada27c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def pytest(context, junit=False, pty=True, base=False, isolated=False):
7373
for root, dirnames, _ in os.walk(str(TASK_ROOT / 'tests_isolated')):
7474
for dir_name in dirnames:
7575
if dir_name.startswith('test_'):
76-
context.run(command_str + ' tests_isolated/' + dir)
76+
context.run(command_str + ' tests_isolated/' + dir_name)
7777

7878

7979
namespace.add_task(pytest)

0 commit comments

Comments
 (0)