Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
pip install --verbose .[tests] -Cbuild-dir=build \
-Csetup-args=-Dbuildtype=debug -Csetup-args=-Db_coverage=true
env:
PKG_CONFIG_PATH: .local/lib/pkgconfig
PKG_CONFIG_PATH: ${{ github.workspace }}/.local/lib/pkgconfig
- run: pytest --hypothesis-profile=default
env:
LD_LIBRARY_PATH: .local/lib
LD_LIBRARY_PATH: ${{ github.workspace }}/.local/lib
- name: Get coverage data
run: |
lcov --capture --directory build/ --output-file coverage.info
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- run: pip install --upgrade pip
- run: pip --verbose install .[tests] -Csetup-args=-Dbuildtype=debug
env:
PKG_CONFIG_PATH: .local/lib/pkgconfig
PKG_CONFIG_PATH: ${{ github.workspace }}/.local/lib/pkgconfig
- run: pytest --hypothesis-profile=default
env:
LD_LIBRARY_PATH: .local/lib
LD_LIBRARY_PATH: ${{ github.workspace }}/.local/lib
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
- run: pip install --upgrade pip
- run: pip --verbose install .[tests] -Csetup-args=-Dbuildtype=debug
env:
PKG_CONFIG_PATH: .local/lib/pkgconfig
PKG_CONFIG_PATH: ${{ github.workspace }}/.local/lib/pkgconfig
- run: pytest
env:
LD_LIBRARY_PATH: .local/lib
LD_LIBRARY_PATH: ${{ github.workspace }}/.local/lib
os:
uses: ./.github/workflows/os.yml
needs:
Expand Down