From c165f3c783f009724247042e5332a33b95bddf2f Mon Sep 17 00:00:00 2001 From: kpzn768 Date: Mon, 16 Dec 2024 13:21:56 +0100 Subject: [PATCH] Update task.py --- tasks.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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")