Skip to content

Commit 9bfe795

Browse files
committed
Reverting path update
1 parent 8ce0939 commit 9bfe795

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def pylint(context, name=NAME, image_ver=IMAGE_VER, local=INVOKE_LOCAL):
215215
"""
216216
# pty is set to true to properly run the docker commands due to the invocation process of docker
217217
# https://docs.pyinvoke.org/en/latest/api/runners.html - Search for pty for more information
218-
exec_cmd = 'find /local/diffsync/ -name "*.py" | xargs pylint'
218+
exec_cmd = 'find . -name "*.py" | xargs pylint'
219219
run_cmd(context, exec_cmd, name, image_ver, local)
220220

221221

@@ -231,7 +231,7 @@ def yamllint(context, name=NAME, image_ver=IMAGE_VER, local=INVOKE_LOCAL):
231231
"""
232232
# pty is set to true to properly run the docker commands due to the invocation process of docker
233233
# https://docs.pyinvoke.org/en/latest/api/runners.html - Search for pty for more information
234-
exec_cmd = "yamllint /local/diffsync/"
234+
exec_cmd = "yamllint ."
235235
run_cmd(context, exec_cmd, name, image_ver, local)
236236

237237

0 commit comments

Comments
 (0)