Skip to content

Commit

Permalink
CI,DBG: Re-add debug section to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
DWesl authored Sep 18, 2024
1 parent 46cf6b3 commit 9b712c8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,14 @@ jobs:
run: |
cd test/ci_tests
python utests.py
- name: Check import
if: failure()
run: |
python -m pip show wrf-python
python -m pip show --files wrf-python
prefix="$(python -m pip show --files wrf-python | grep Location: | cut -f2 -d" ")"
installed_files="$(python -m pip show --files wrf-python | sed -E -e "/\\w+:/ d" -e "/^\s+/ s|^\s+|${prefix}/|g")"
ls -l ${installed_files}
file ${installed_files}
ldd $(echo ${installed_files} | grep -F -v -e ".py" -e ".dist-info")
python -vvv -dd -c "import wrf"

0 comments on commit 9b712c8

Please sign in to comment.