From 6dfeae959d30e0ec6ce1282ca9d81ce39e2b8eb3 Mon Sep 17 00:00:00 2001 From: Bazire Date: Mon, 16 Oct 2023 14:20:21 +0200 Subject: [PATCH] Repair tests with multiprocess (issue with coverage) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f8b587f5c7..d19b50cba2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ _.env = { GSK_DISABLE_ANALYTICS = "True" } test.cmd = "pytest -c pyproject.toml tests --cov=giskard --cov-report=xml --disable-warnings --no-header -vv --durations=0" # for some reason github runners don't work when calling 'pdm test -m "not slow"' test-fast.cmd = "pytest -n auto -m 'not slow and not concurrency' -c pyproject.toml tests --cov=giskard --cov-report=xml --disable-warnings --no-header -vv --durations=0" -test-worker.cmd = "pytest -m 'concurrency' -c pyproject.toml tests --cov=giskard --cov-report=xml --disable-warnings --no-header -vv --durations=0" +test-worker.cmd = "pytest -m 'concurrency' -c pyproject.toml tests --disable-warnings --no-header -vv --durations=0" lint = "ruff giskard tests" doc = "sphinx-build docs docs/_build/html" watch-doc = "python -m sphinx_autobuild --watch giskard docs docs/_build/html"