Skip to content

Commit

Permalink
Dependencies update
Browse files Browse the repository at this point in the history
  • Loading branch information
zjkmxy committed Oct 10, 2024
1 parent 8ff20a2 commit 2b4d52a
Show file tree
Hide file tree
Showing 3 changed files with 771 additions and 602 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,29 +15,29 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.12', 'pypy-3.10']
python-version: ['3.12', 'pypy-3.10']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
cache: 'poetry' # caching poetry dependencies
- name: Install dependencies
run: |
pip install ".[dev]"
poetry install --all-extras
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
poetry run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 src --exclude=src/ndn/contrib --count --ignore=F403,F405,W503,E226 \
poetry run flake8 src --exclude=src/ndn/contrib --count --ignore=F403,F405,W503,E226 \
--exit-zero --max-complexity=20 --max-line-length=120 --statistics
flake8 tests --count --ignore=F403,F405,W503,E226,E222,W504 \
poetry run flake8 tests --count --ignore=F403,F405,W503,E226,E222,W504 \
--exit-zero --max-complexity=50 --max-line-length=120 --statistics
- name: Test with pytest
run: |
pytest tests
poetry run pytest tests
Loading

0 comments on commit 2b4d52a

Please sign in to comment.