From 9b30b1bfaea75e80a42d86f932d6c1e27295db5f Mon Sep 17 00:00:00 2001 From: David Waroquiers Date: Tue, 12 Mar 2024 14:53:42 +0100 Subject: [PATCH] Trying to fix pytest ci coverage options. --- .github/workflows/main_ci.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main_ci.yml b/.github/workflows/main_ci.yml index 83e09052..f2e4e9a7 100644 --- a/.github/workflows/main_ci.yml +++ b/.github/workflows/main_ci.yml @@ -51,4 +51,4 @@ jobs: - name: Run pytest shell: bash - run: pytest --strict-markers -m 'not integration' --cov=turbomoleio --cov-config=pyproject.toml --cov-report term + run: pytest -m 'not integration' diff --git a/pyproject.toml b/pyproject.toml index f8bd0740..d0721d39 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,7 +69,7 @@ line_length = 88 [tool.pytest.ini_options] minversion = "6.1.2" -addopts = "--strict-markers --cov=turbomoleio --cov-config=pyproject.toml --cov-report html --cov-report term" +addopts = "--strict-markers --cov=turbomoleio --cov-config=pyproject.toml --cov-report=html --cov-report=term" markers = [ "unit: Unit tests on small portions of the code that do not require execution of external code.", "integration: Integration tests that require running turbomole executables.",