From 708a62c8c995eb083b608361cf8327df7b18c6b0 Mon Sep 17 00:00:00 2001 From: Srinivas Gorur-Shandilya Date: Tue, 21 Nov 2023 13:19:55 -0500 Subject: [PATCH] testing poetry tests --- .github/workflows/main.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ec44346..08f02c2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -48,13 +48,15 @@ jobs: env: IDEAS_PAT: ${{secrets.IDEAS_PAT}} + - name: Install poetry + uses: abatilo/actions-poetry@v2 + with: + poetry-version: 1.3.1 + - name: run unit tests run: | - pip install -e . - pip install pytest coverage - echo ${{ secrets.IDEAS_PAT }} - pip install git+https://${{ secrets.IDEAS_PAT }}@github.com/inscopix/ideas-data.git - pytest -s + poetry install --with test + make test code_format: