diff --git a/.github/workflows/pytest-coverage.yml b/.github/workflows/pytest-coverage.yml index 7aeebb8e3..436d11154 100644 --- a/.github/workflows/pytest-coverage.yml +++ b/.github/workflows/pytest-coverage.yml @@ -34,6 +34,8 @@ jobs: - name: Build coverage file run: | pytest --junitxml=pytest.xml --cov-report=term-missing:skip-covered --cov=. | tee pytest-coverage.txt + env: + LD_LIBRARY_PATH: /usr/local/lib working-directory: src/backend - name: Pytest coverage comment diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index a90675284..033c740b3 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -50,4 +50,6 @@ jobs: - name: Test with pytest run: | pytest + env: + LD_LIBRARY_PATH: /usr/local/lib working-directory: src/backend