From ddf467600cfbf95ab50389678f795a1021c81f3f Mon Sep 17 00:00:00 2001 From: heswithme Date: Tue, 17 Sep 2024 15:49:57 +0200 Subject: [PATCH] remove poetry cacheing --- .github/workflows/ci.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 203641b..19beddb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,15 +30,10 @@ jobs: steps: - uses: actions/checkout@v3 - # install poetry to allow cacheing - - name: Install poetry - run: pipx install poetry - - name: Setup Python 3.12.6 uses: actions/setup-python@v5 with: python-version: 3.12.6 - cache: 'poetry' - name: Install Requirements run: | @@ -51,4 +46,5 @@ jobs: ETH_RPC_URL: ${{ secrets.ETH_RPC_URL }} ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }} run: | - poetry run pytest --numprocesses=auto + source .venv/bin/activate + pytest --numprocesses=auto