From 4dcaa18bb9c9b594c240dc1715cd3778799363b0 Mon Sep 17 00:00:00 2001 From: James Gaboardi Date: Wed, 18 Oct 2023 18:23:31 -0400 Subject: [PATCH] doctest in CI --- .github/workflows/tests.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 98fb95e..fd515ef 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,8 +18,6 @@ on: jobs: unittests: - env: - RUN_TEST: pytest giddy --cov giddy -v -n auto -r a --cov-config .coveragerc --cov-report xml --color yes --cov-append --cov-report term-missing name: ${{ matrix.os }}, ${{ matrix.environment-file }} runs-on: ${{ matrix.os }} defaults: @@ -72,7 +70,7 @@ jobs: if: contains(matrix.environment-file, 'DEV') - name: run tests - run: ${{ env.RUN_TEST }} + run: pytest giddy --cov giddy -v -n auto -r a --doctest-modules --color yes --cov-report term-missing --cov-report xml - name: codecov uses: codecov/codecov-action@v3