From fd77b14d5a773661c26ff16e858d1dec863b0832 Mon Sep 17 00:00:00 2001 From: Doyle Rowland Date: Sat, 22 Apr 2023 12:51:00 -0400 Subject: [PATCH] ci: split test suite run into unit and system --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index da52ac2..aeec3e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -208,6 +208,14 @@ commands = pip install -U pip pip install --prefix={toxworkdir}/{envname} -e .[tomli] pytest -s -x -c {toxinidir}/pyproject.toml \ + -m unit \ + --cache-clear \ + --cov=docformatter \ + --cov-config={toxinidir}/pyproject.toml \ + --cov-branch \ + {toxinidir}/tests/ + pytest -s -x -c {toxinidir}/pyproject.toml \ + -m system \ --cache-clear \ --cov=docformatter \ --cov-config={toxinidir}/pyproject.toml \