Skip to content

Commit

Permalink
GitHub actions: skip pylint run for pypy
Browse files Browse the repository at this point in the history
Signed-off-by: flashdagger <flashdagger@googlemail.com>
  • Loading branch information
flashdagger committed Apr 2, 2024
1 parent 90b5be5 commit 958edcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/core-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
run: |
poetry run mypy ./zammadoo
- name: Static code analysis with pylint
if: ${{ matrix.python-version != '3.8' }}
if: ${{ !startsWith(matrix.python-version, 'pypy') }}
run: |
poetry run pylint ./zammadoo
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ src_paths = ["zammadoo", "tests"]
# see: https://pytest-cov.readthedocs.io/en/latest/config.html
[tool.pytest.ini_options]
minversion = "7.4"
addopts = "tests -v --tb=short --cov=zammadoo --cov-report html --mypy-only-local-stub --benchmark-max-time=0.1"
addopts = "tests -v --tb=short --cov=zammadoo --cov-report= --mypy-only-local-stub --benchmark-max-time=0.1"
cache_dir = ".cache/pytest"
markers = ["no_record"]

Expand Down

0 comments on commit 958edcf

Please sign in to comment.