Skip to content

Commit

Permalink
Test using pwd
Browse files Browse the repository at this point in the history
  • Loading branch information
mmghannam committed Aug 2, 2024
1 parent 6cd40df commit ad7ad25
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,14 @@ jobs:
- name: Install PySCIPOpt
run: |
export SCIPOPTDIR=${{ runner.workspace }}/scip/
export DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH}:${{ runner.workspace }}/scip/lib
export SCIPOPTDIR=$(pwd)/scip/
export DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH}:$(pwd)/scip/lib
python -m pip install .
- name: Run pyscipopt tests
run: |
export SCIPOPTDIR=${{ runner.workspace }}/scip/
export DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH}:${{ runner.workspace }}/scip/lib
export SCIPOPTDIR=$(pwd)/scip/
export DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH}:$(pwd)/scip/lib
py.test
### if you need valgrind on mac, you can install it via
Expand Down

0 comments on commit ad7ad25

Please sign in to comment.