Skip to content

Commit

Permalink
handle doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
slevang committed Oct 4, 2024
1 parent 3e82058 commit fd8b145
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ jobs:
deps:
- name: minimal
value: '[dev]'
doctest: '' # doctest runs MCA and requires statsmodels
- name: complete
value: '[dev,complete]'
doctest: '--doctest-glob=README.md'

steps:
- uses: actions/checkout@v4
Expand All @@ -44,7 +46,7 @@ jobs:
- name: Execute Tests
run: |
coverage run -m pytest -n auto --doctest-glob="README.md"
coverage run -m pytest -n auto ${{ matrix.deps.doctest }}
coverage report -m
coverage xml
Expand Down

0 comments on commit fd8b145

Please sign in to comment.