Skip to content

Commit

Permalink
TST: done run executable tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ColmTalbot authored Feb 22, 2024
1 parent 38e6c1f commit 32a8cb0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/basic-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ jobs:
python -c "import bilby.hyper"
python -c "import cli_bilby"
python test/import_test.py
- name: Test executables
# I don't understand windows shell commands
if: matrix.os != "windows-latest"
run: |
for script in $(pip show -f bilby | grep "bin\/" | xargs -I {} basename {}); do
${script} --help;
done

0 comments on commit 32a8cb0

Please sign in to comment.