diff --git a/tasks.py b/tasks.py index cbe7dc7..dac4b34 100644 --- a/tasks.py +++ b/tasks.py @@ -10,9 +10,9 @@ 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) @@ -20,4 +20,4 @@ def run_tests(context): @task def run_linting(context): print("Running pylint...") - context.run("pylint rxnutils") \ No newline at end of file + context.run("pylint rxnutils")