Skip to content

Commit a28377b

Browse files
committed
test: fix missing docs folder
1 parent 59e8f61 commit a28377b

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
run: >-
5858
uv run --frozen pytest
5959
--cov --cov-report=xml --cov-report=term --durations=20
60-
src docs tests
60+
src tests
6161
6262
- name: Upload coverage report
6363
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24
@@ -88,9 +88,9 @@ jobs:
8888
run: >-
8989
uv run --frozen pytest
9090
--cov --cov-report=xml --cov-report=term --durations=20
91-
src docs tests
91+
src tests
9292
9393
- name: Upload coverage report
94-
uses: codecov/codecov-action@v18283e04ce6e62d37312384ff67231eb8fd56d24
94+
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24
9595
with:
9696
token: ${{ secrets.CODECOV_TOKEN }}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,6 @@ venv/
2525

2626
# Mac files
2727
.DS_Store
28+
29+
# Coverage
30+
.coverage

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ version_tuple = {version_tuple!r}
115115
]
116116
log_cli_level = "INFO"
117117
minversion = "8.3"
118-
testpaths = ["README.md", "src/", "docs", "tests/"]
118+
testpaths = ["README.md", "src/", "tests/"]
119119
norecursedirs = ["docs/_build"]
120120
xfail_strict = true
121121

0 commit comments

Comments
 (0)