adaptions for windows in lint script
This commit is contained in:
parent
bd551984ad
commit
79d912fc80
7
lint.py
7
lint.py
@ -11,8 +11,11 @@ def main():
|
|||||||
)
|
)
|
||||||
additional_flags_both_steps = "--count --statistics"
|
additional_flags_both_steps = "--count --statistics"
|
||||||
additional_flags_first_step = "--select=E9,F63,F7,F82 --show-source"
|
additional_flags_first_step = "--select=E9,F63,F7,F82 --show-source"
|
||||||
|
python_exe = ""
|
||||||
|
if os.name == "nt":
|
||||||
|
python_exe = "py -m"
|
||||||
flake8_first_step_cmd = (
|
flake8_first_step_cmd = (
|
||||||
f"flake8 . {additional_flags_both_steps} "
|
f"{python_exe} flake8 . {additional_flags_both_steps} "
|
||||||
f"{additional_flags_first_step} {exclude_dirs_flag}"
|
f"{additional_flags_first_step} {exclude_dirs_flag}"
|
||||||
)
|
)
|
||||||
status = os.system(flake8_first_step_cmd)
|
status = os.system(flake8_first_step_cmd)
|
||||||
@ -29,7 +32,7 @@ def main():
|
|||||||
if not os.path.exists("setup.cfg"):
|
if not os.path.exists("setup.cfg"):
|
||||||
additional_flags_second_step += " --max-line-length=100"
|
additional_flags_second_step += " --max-line-length=100"
|
||||||
flake8_second_step_cmd = (
|
flake8_second_step_cmd = (
|
||||||
f"flake8 . {additional_flags_both_steps} {additional_flags_second_step}"
|
f"{python_exe} flake8 . {additional_flags_both_steps} {additional_flags_second_step}"
|
||||||
f" {exclude_dirs_flag}"
|
f" {exclude_dirs_flag}"
|
||||||
)
|
)
|
||||||
os.system(flake8_second_step_cmd)
|
os.system(flake8_second_step_cmd)
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 8580a08e9876efc542e19dc957f220be3b250dc8
|
Subproject commit 0039a0ec67217765b9dabfbc35dcb34b6ff81c08
|
2
tmtccmd
2
tmtccmd
@ -1 +1 @@
|
|||||||
Subproject commit f7bbf4bd9f6dc169a8b9e6a76fa9ef0aceb341d4
|
Subproject commit 49cf288831216c0680aedab88e31d684ba5b8da8
|
Loading…
Reference in New Issue
Block a user