Skip to content

Commit

Permalink
chore: fix coveralls actions path (#3028)
Browse files Browse the repository at this point in the history
  • Loading branch information
Panaetius committed Jul 19, 2022
1 parent aabdbe8 commit b1a803e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1078,3 +1078,4 @@ jobs:
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true
base-path: renku/
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ pattern = """
files = ["renku/version.py"]

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

[tool.coverage.run]
omit = ["renku/conftest.py", "renku/data/*"]
omit = ["renku/conftest.py", "renku/data/*", "docs/*", "tests/*"]
relative_files = true

[tool.flakehell]
max_line_length = 120
Expand Down

0 comments on commit b1a803e

Please sign in to comment.