From b37d21d9671d72769d9ae7668d2b403a5e462bc7 Mon Sep 17 00:00:00 2001 From: Ben Nibbelink Date: Sun, 12 Nov 2023 18:10:42 -0600 Subject: [PATCH] debugging --- .github/workflows/build_test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 6d405ecd8..0b4298ec3 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -43,7 +43,7 @@ jobs: - name: Build Cycamore run: | - python install.py --prefix=/root/.local -j 2 --build-type=Release --core-version 99999.99999 + python install.py --prefix=/root/.local --cyclus-root=/root/.local -j 2 --build-type=Release --core-version 99999.99999 - name: Cycamore Unit Tests run: | @@ -51,4 +51,7 @@ jobs: - name: Cycamore Python Tests run: | - cd tests && PYTHONPATH=`python -m site --user-site` python -m pytest + echo $PYTHONPATH + python -c "import sys; print(sys.path)" + echo $LD_LIBRARY_PATH + cd tests && python -m pytest