Skip to content

Commit

Permalink
Attempt to remove psvcp140 installed by matplotlib.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackjansen committed Aug 3, 2024
1 parent 17d94be commit a379cb4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,15 @@ jobs:
build-type: Release
run-test: true
install-build: true
- name: Rerun failed tests verbosely
- name: Remove any msvcp140 installed by Python packages
shell: bash
run:
find "build/venv" -name "msvcp140*" -exec rm {} \;
- name: Rerun failed tests verbosely
if: failure()
shell: bash
run: |
ctest -C Release --rerun-failed --output-on-failure
ctest --build-dir build -C Release --rerun-failed --output-on-failure
- name: Show Python and Python module versions used
if: always()
shell: bash
Expand Down

0 comments on commit a379cb4

Please sign in to comment.