Skip to content

Commit

Permalink
Fixes to tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
robinmackaij committed Feb 12, 2024
1 parent fdb0c23 commit 7097da8
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,17 @@ def utests(context: Context) -> None:
"-m",
"unittest",
"discover ",
f"{ROOT}/tests/unittests",
f"{ROOT}/tests/driver/unittests",
]
subprocess.run(" ".join(cmd), shell=True, check=False)

cmd = [
"coverage",
"run",
"-m",
"unittest",
"discover ",
f"{ROOT}/tests/libcore/unittests",
]
subprocess.run(" ".join(cmd), shell=True, check=False)

Expand All @@ -52,7 +62,7 @@ def atests(context: Context) -> None:
f"--variable=root:{ROOT}",
f"--outputdir={ROOT}/tests/logs",
"--loglevel=TRACE:DEBUG",
f"{ROOT}/tests/suites",
f"{ROOT}/tests",
]
subprocess.run(" ".join(cmd), shell=True, check=False)

Expand Down

0 comments on commit 7097da8

Please sign in to comment.