summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2022-04-15 02:04:38 -0400
committerGitHub <noreply@github.com>2022-04-15 08:04:38 +0200
commit33f2b3f2ef98f2824fdf889e6eb2ae34baeb0192 (patch)
tree57b0d6ddb3d92b46fd4ce11a1086fc172f753606
parent157d7386af4a824e028bab0768fc3a482a01512f (diff)
downloadpy-bcrypt-git-33f2b3f2ef98f2824fdf889e6eb2ae34baeb0192.tar.gz
fix for new docker images (#303)
* fix for new docker images * Update config.yml * Update ci.yml
-rw-r--r--.circleci/config.yml2
-rw-r--r--.github/workflows/ci.yml4
2 files changed, 3 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index ddd5ccd..c257ace 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -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
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 1745616..8d75a19 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -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 }}