Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Commit

Permalink
Tasks tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
robinmackaij committed Jun 22, 2023
1 parent 67a9053 commit fc1f65a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ def tests(context):

@task
def lint(context):
subprocess.run(f"mypy {ROOT}", shell=True, check=False)
subprocess.run(f"pylint {ROOT}/src/OpenApiLibCore", shell=True, check=False)
subprocess.run(f"mypy {ROOT}/src", shell=True, check=False)
subprocess.run(f"pylint {ROOT}/src", shell=True, check=False)
subprocess.run(f"robocop {ROOT}/tests/suites", shell=True, check=False)


Expand Down

0 comments on commit fc1f65a

Please sign in to comment.