We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a9b03e commit 4b5e4bbCopy full SHA for 4b5e4bb
.github/workflows/main.yml
@@ -25,7 +25,7 @@ jobs:
25
run: pip install .[dev]
26
27
- name: Unittests
28
- run: pytest
+ run: pytest --doctest-modules
29
30
- name: Lint
31
run: black --diff --check --verbose .
@@ -45,7 +45,7 @@ jobs:
45
- name: Coverage report
46
run: |
47
pip install .[dev]
48
- pytest
+ pytest --doctest-modules
49
shell: bash
50
51
- name: Upload coverage to Codecov
pyproject.toml
@@ -15,5 +15,5 @@ profile = "black"
15
16
[tool.pytest.ini_options]
17
minversion = "7.0"
18
-addopts = "-v --cov=fortls --cov-report=html --cov-report=xml --cov-context=test --doctest-modules"
+addopts = "-v --cov=fortls --cov-report=html --cov-report=xml --cov-context=test"
19
testpaths = ["fortls", "test"]
0 commit comments