From: Chris Fulljames Date: Fri, 4 Apr 2025 22:53:38 +0000 (-0400) Subject: Add package install for online tests X-Git-Url: https://littlesong.place/gitweb/?a=commitdiff_plain;h=31bffbc65f2034b59b26fa3fd0e57d0cf2be24e3;p=littlesongplace.git Add package install for online tests --- 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