fix for new docker images (#303)

* fix for new docker images

* Update config.yml

* Update ci.yml
This commit is contained in:
Alex Gaynor 2022-04-15 02:04:38 -04:00 committed by GitHub
parent 157d7386af
commit 33f2b3f2ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ jobs:
image: <<parameters.image>>
- docker-run:
image: <<parameters.image>>
command: tox -e <<parameters.toxenv>>
command: /venv/bin/tox -e <<parameters.toxenv>>
linux-arm64-wheel:
machine:
image: ubuntu-2004:current

View File

@ -85,9 +85,9 @@ jobs:
- {IMAGE: "alpine", TOXENV: "py39"}
name: "${{ matrix.IMAGE.TOXENV }} on ${{ matrix.IMAGE.IMAGE }}"
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.0.1
with:
persist-credentials: false
- run: 'tox'
- run: '/venv/bin/tox'
env:
TOXENV: ${{ matrix.IMAGE.TOXENV }}