Skip to content

Commit

Permalink
DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
titodalcanton committed Nov 15, 2024
1 parent 8562cce commit e5bbb9a
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/basic-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
os: [ubuntu-latest, macos-latest]
python-version: ['3.9', '3.10', '3.11', '3.12']
test-type: [unittest, search, docs]
defaults:
run:
# important when we use Conda envs
shell: bash -el {0}
steps:
- uses: conda-incubator/setup-miniconda@v3
with:
Expand Down Expand Up @@ -45,11 +49,17 @@ jobs:
cd ../
- name: DEBUG DEBUG DEBUG checking various env stuff
run: |
echo "Which Python version do we have?"
python --version
echo "Where is Python?"
which python
echo "Where is tox?"
which tox
echo "What is $CONDA_PREFIX?"
echo $CONDA_PREFIX
ls $CONDA_PREFIX/lib/liblapack*
echo "Is LAPACK where it should?"
ls $CONDA_PREFIX/lib/ | grep liblapack
echo "What is LD_LIBRARY_PATH?"
echo $LD_LIBRARY_PATH
- name: run pycbc test suite
run: |
Expand Down

0 comments on commit e5bbb9a

Please sign in to comment.