From 4d236a2dbbc278b21ab78897e96905ec4dfcad9f Mon Sep 17 00:00:00 2001 From: henryruhs Date: Sat, 25 Feb 2023 12:27:00 +0100 Subject: [PATCH] Fix CI for PyQt6 --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d24ed9b..45a74eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,6 +36,10 @@ jobs: - run: pip install pytest - run: pip install pytest-mock - run: pip install requests + + - run: sudo apt-get update && sudo apt-get install -y libegl1 + - run: echo "export LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu" >> $GITHUB_ENV + - run: pytest tests env: APPVEYOR_TOKEN: ${{ secrets.APPVEYOR_TOKEN }} @@ -68,6 +72,10 @@ jobs: - run: pip install pytest-cov - run: pip install pytest-mock - run: pip install requests + + - run: sudo apt-get update && sudo apt-get install -y libegl1 + - run: echo "export LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu" >> $GITHUB_ENV + - run: pytest tests --cov=chroma_feedback env: APPVEYOR_TOKEN: ${{ secrets.APPVEYOR_TOKEN }}