Skip to content

Commit

Permalink
v0.23.15: ci: add hypothesis to GH actions workflow dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rmlibre committed Aug 18, 2024
1 parent 60fb745 commit 9bb83b7
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux-pypi-release-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip pytest pytest-asyncio coverage ruff aiofiles cryptography
python3 -m pip install --upgrade pip pytest pytest-asyncio coverage ruff hypothesis aiofiles cryptography
- name: run tests from pypi tarball
run: |
PACKAGE_NAME=aiootp
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
python3 -m pip install --upgrade pip pytest pytest-asyncio coverage ruff aiofiles cryptography
python3 -m pip install --upgrade pip pytest pytest-asyncio coverage ruff hypothesis aiofiles cryptography
- name: lint with ruff
run: |
ruff check . && ruff format --line-length=76 --check .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-pypi-release-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip pytest pytest-asyncio coverage ruff aiofiles cryptography
python3 -m pip install --upgrade pip pytest pytest-asyncio coverage ruff hypothesis aiofiles cryptography
- name: run tests from pypi tarball
run: |
PACKAGE_NAME=aiootp
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
python3 -m pip install --upgrade pip pytest pytest-asyncio coverage ruff aiofiles cryptography
python3 -m pip install --upgrade pip pytest pytest-asyncio coverage ruff hypothesis aiofiles cryptography
- name: lint with ruff
run: |
ruff check . && ruff format --line-length=76 --check .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-pypi-release-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install dependencies
run: |
choco install git -y
python3 -m pip install --upgrade pip pytest pytest-asyncio coverage ruff aiofiles cryptography
python3 -m pip install --upgrade pip pytest pytest-asyncio coverage ruff hypothesis aiofiles cryptography
- name: run tests from pypi tarball
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
python3 -m pip install --upgrade pip pytest pytest-asyncio coverage ruff aiofiles cryptography
python3 -m pip install --upgrade pip pytest pytest-asyncio coverage ruff hypothesis aiofiles cryptography
- name: lint with ruff
run: |
ruff check . && ruff format --line-length=76 --check .
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Major Changes
- build: update dependencies & add coverage to dev & test installs
- build: add ``hypothesis`` dependency to dev & test installs
- build: bump ``ruff`` version & fix new lint rule changes
- ci: add ``hypothesis`` to GH actions workflow dependencies


Minor Changes
Expand Down

0 comments on commit 9bb83b7

Please sign in to comment.