]> littlesong.place Git - littlesongplace.git/commitdiff
Add package install for online tests
authorChris Fulljames <christianfulljames@gmail.com>
Fri, 4 Apr 2025 22:53:38 +0000 (18:53 -0400)
committerChris Fulljames <christianfulljames@gmail.com>
Fri, 4 Apr 2025 22:53:38 +0000 (18:53 -0400)
.github/workflows/test-and-deploy.yml

index 48c23d7fb9b8b5157bb7707b866cde997fe39f52..8486dde12debab3c4d95b7c8966998af27bd1e32 100644 (file)
@@ -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