Skip to content

Commit

Permalink
Exclude extra packages tests for pypy-3.10
Browse files Browse the repository at this point in the history
- numpy wheels for that version seem to have been yanked
- update checkout action version
  • Loading branch information
mrbean-bremen committed Sep 20, 2023
1 parent d0f3e6a commit ca0eeb6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dockertests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
docker-image: [debian, fedora, ubuntu, redhat]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup docker container
run: |
docker build -t pyfakefs -f $GITHUB_WORKSPACE/.github/workflows/dockerfiles/Dockerfile_${{ matrix.docker-image }} . --build-arg github_repo=$GITHUB_REPOSITORY --build-arg github_branch=$GITHUB_REF_NAME
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
python-version: [ '3.10' ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand All @@ -35,7 +35,7 @@ jobs:
os: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -77,12 +77,12 @@ jobs:
fi
shell: bash
- name: Install extra dependencies
if: ${{ matrix.python-version != '3.12-dev' }}
if: ${{ matrix.python-version != '3.12-dev' && matrix.python-version != 'pypy-3.10' }}
run: |
pip install -r extra_requirements.txt
shell: bash
- name: Run unit tests with extra packages as non-root user
if: ${{ matrix.python-version != '3.12-dev' }}
if: ${{ matrix.python-version != '3.12-dev' && matrix.python-version != 'pypy-3.10' }}
run: |
python -m pyfakefs.tests.all_tests
shell: bash
Expand All @@ -103,7 +103,7 @@ jobs:
python-version: ["3.9"]
pytest-version: [3.0.0, 3.5.1, 4.0.2, 4.5.0, 5.0.1, 5.4.3, 6.0.2, 6.2.5, 7.0.1, 7.1.3, 7.2.0, 7.3.1, 7.4.0]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
os: [ubuntu-latest, windows-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit ca0eeb6

Please sign in to comment.