diff --git a/.github/workflows/nix_integration_tests.yaml b/.github/workflows/nix_integration_tests.yaml index 90edb2e6..48f92376 100644 --- a/.github/workflows/nix_integration_tests.yaml +++ b/.github/workflows/nix_integration_tests.yaml @@ -33,6 +33,9 @@ jobs: - name: Build run: nix develop .#test --command echo "Ok" - name: Python tests. - run: nix develop .#test --command python -m pytest -svvx integration-tests/ + run: + sudo mkdir -p /run/opengl-driver/lib + sudo find /usr/lib . -name 'libcuda.so*' -exec ln -s {} /run/opengl-driver/lib/ + nix develop .#test --command python -m pytest -svvx integration-tests/ env: HF_TOKEN: ${{ secrets.HF_TOKEN }}