Skip to content

Commit

Permalink
Add step to find test dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbean-bremen committed Jun 13, 2021
1 parent c8b2b2e commit 9a02f89
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,24 @@ jobs:
python -m pyfakefs.tests.performance_test
fi
shell: bash

dependency-check:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-2016]
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r extra_requirements.txt
pip install pytest-find-dependencies
- name: Check dependencies
run: python -m pytest --find-dependencies pyfakefs/tests
shell: bash
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ The released versions correspond to PyPi releases.

## Version 4.6.0 (as yet unreleased)

### Infrastructure
* added test dependency check (see [#608](../../issues/608))

## [Version 4.5.0](https://pypi.python.org/pypi/pyfakefs/4.5.0) (2021-06-04)
Adds some support for Python 3.10 and basic type checking.

Expand Down

0 comments on commit 9a02f89

Please sign in to comment.