From efc333a05b96c67f1043577ab1e7b0eb3bc64a20 Mon Sep 17 00:00:00 2001 From: Sebastian Weigand Date: Sat, 6 Nov 2021 22:36:06 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=87=F0=9F=A9=B9=20Use=20pinned=20versi?= =?UTF-8?q?ons=20of=20dependencies=20to=20run=20integration=20CI=20tests?= =?UTF-8?q?=20=20(#892)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 🚇🩹 Use pinned version of dependencies to run integration tests * 🚇👌 Add step to show installed packages for debugging purposes --- .github/workflows/integration-tests.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 7c1e7c5e9..c2d921c71 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -34,12 +34,17 @@ jobs: - name: Install pyglotaran run: | pip install wheel + pip install -r requirements_dev.txt pip install . - name: ${{ matrix.example_name }} id: example-run uses: glotaran/pyglotaran-examples@main with: example_name: ${{ matrix.example_name }} + - name: Installed packages + if: always() + run: | + pip freeze - name: Upload Example Plots Artifact uses: actions/upload-artifact@v2 with: