Skip to content

Commit

Permalink
poetry debug
Browse files Browse the repository at this point in the history
  • Loading branch information
flashdagger committed Oct 20, 2023
1 parent a6af91a commit 177e2a9
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/core-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy-3.10"]
python-version: ["3.8"] #, "3.9", "3.10", "3.11", "pypy-3.10"]

steps:
- uses: actions/checkout@v3
Expand All @@ -41,9 +41,13 @@ jobs:
./.cache
./.venv
key: venv-${{ hashFiles('poetry.lock') }}
- run: poetry install --without doc
- run: |
poetry run python --version
poetry install --without doc
- name: Unit tests with pytest
run: poetry run pytest
run: |
poetry run pytest
pytest
- name: Static typechecking with mypy
run: poetry run mypy ./zammadoo
- name: Static code analysis with pylint
Expand Down

0 comments on commit 177e2a9

Please sign in to comment.