Skip to content

Commit b1a803e

Browse files
authored
chore: fix coveralls actions path (#3028)
1 parent aabdbe8 commit b1a803e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/test_deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1078,3 +1078,4 @@ jobs:
10781078
with:
10791079
github-token: ${{ secrets.github_token }}
10801080
parallel-finished: true
1081+
base-path: renku/

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ pattern = """
311311
files = ["renku/version.py"]
312312

313313
[tool.pytest.ini_options]
314-
addopts = "--flake8 --black --doctest-glob=\"*.rst\" --doctest-modules --cov=renku --cov-report=term-missing --ignore=docs/cheatsheet/"
314+
addopts = "--flake8 --black --doctest-glob=\"*.rst\" --doctest-modules --cov --cov-report=term-missing --ignore=docs/cheatsheet/"
315315
doctest_optionflags = "ALLOW_UNICODE"
316316
flake8-ignore = ["*.py", "E121", "E126", "E203", "E226", "E231", "W503", "W504", "docs/conf.py", "docs/cheatsheet/conf.py", "ALL"]
317317
flake8-max-line-length = 120
@@ -386,7 +386,8 @@ module = "renku.core.migration.*"
386386
ignore_errors = true
387387

388388
[tool.coverage.run]
389-
omit = ["renku/conftest.py", "renku/data/*"]
389+
omit = ["renku/conftest.py", "renku/data/*", "docs/*", "tests/*"]
390+
relative_files = true
390391

391392
[tool.flakehell]
392393
max_line_length = 120

0 commit comments

Comments
 (0)