Skip to content

Commit

Permalink
Enable doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
maresb committed Sep 20, 2024
1 parent 82ccc2d commit 1c2d8ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Running serial tests
shell: bash -l {0}
run: |
pytest tests \
pytest \
-vv \
-n 0 \
-m "serial" \
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Running parallel tests
shell: bash -l {0}
run: |
pytest tests \
pytest \
-vv \
-n 0 \
-m "not serial" \
Expand Down
4 changes: 2 additions & 2 deletions pytest.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[pytest]
junit_family=xunit2
junit_duration_report=call
addopts = -ra -q
testpaths = tests
addopts = -ra -q --doctest-modules
testpaths = grayskull tests
markers =
serial: Mark for tests which cannot be executed in parallel
github: Tests which need to communicate with github and might reach the limit of github requisitions

0 comments on commit 1c2d8ad

Please sign in to comment.