Skip to content

Commit

Permalink
Update task.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kpzn768 committed Dec 16, 2024
1 parent e36e268 commit c165f3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ def build_docs(context):
@task
def run_tests(context):
cmd = (
"pytest --black --mccabe "
"pytest "
"--cov rxnutils --cov-branch --cov-report html:coverage --cov-report xml "
"-vv tests/"
"tests/"
)
context.run(cmd)


@task
def run_linting(context):
print("Running pylint...")
context.run("pylint rxnutils")
context.run("pylint rxnutils")

0 comments on commit c165f3c

Please sign in to comment.