From 43b0faafece23b818e66d45e181eb79f796ca088 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 5 Jan 2023 22:53:04 -0500 Subject: [PATCH] install tox into the venv (#483) * install tox into the venv * Update config.yml --- .circleci/config.yml | 2 +- .github/workflows/ci.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index dc4a043..7af54b1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -32,7 +32,7 @@ jobs: image: <> - docker-run: image: <> - command: /venv/bin/tox -e <> + command: /venv/bin/pip install tox && /venv/bin/tox -e <> linux-arm64-wheel: machine: image: ubuntu-2004:current diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc1ee9c..6c05021 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -152,6 +152,7 @@ jobs: ~/.cargo/git/db/ src/_bcrypt/target/ key: ${{ runner.os }}-${{ matrix.IMAGE.IMAGE }}-cargo-${{ hashFiles('**/Cargo.lock') }} + - run: /venv/bin/pip install tox - run: '/venv/bin/tox' env: TOXENV: ${{ matrix.IMAGE.TOXENV }}