From 31bffbc65f2034b59b26fa3fd0e57d0cf2be24e3 Mon Sep 17 00:00:00 2001 From: Chris Fulljames Date: Fri, 4 Apr 2025 18:53:38 -0400 Subject: [PATCH] Add package install for online tests --- .github/workflows/test-and-deploy.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 48c23d7..8486dde 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -123,6 +123,11 @@ jobs: steps: - uses: actions/checkout@v1 + - name: Download package wheel + uses: actions/download-artifact@v4 + with: + name: pkg-wheel + - name: Set up Python uses: actions/setup-python@v3 with: @@ -131,6 +136,7 @@ jobs: - name: Install Dependencies run: | python -m pip install --upgrade pip + pip install ./littlesongplace-*.whl pip install -r dev-requirements.txt - name: Run pytest -- 2.39.5