Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
more unittest
  • Loading branch information
bollwyvl committed Jun 7, 2025
commit 6d59b858e07e874e7706d3c6be7a80f16edf9588
8 changes: 4 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
run: python3 -m pip install -vv pyrudof --find-links=python/dist --no-index

- name: Test Built Wheel
run: cd python/tests && python3 -m unittest -vvv discover
run: cd python/tests && python3 -m unittest discover -vvv

windows:
runs-on: Windows-2022
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
run: python3 -m pip install -vv pyrudof --find-links=python/dist --no-index

- name: Test Built Wheel
run: cd python/tests && python3 -m unittest -vvv discover
run: cd python/tests && python3 -m unittest discover -vvv

macos:
runs-on: macos-latest
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
run: python3 -m pip install -vv pyrudof --find-links=python/dist --no-index

- name: Test Built Wheel
run: cd python/tests && python3 -m unittest -vvv discover
run: cd python/tests && python3 -m unittest discover -vvv

sdist:
runs-on: ubuntu-latest
Expand All @@ -156,7 +156,7 @@ jobs:
run: python3 -m pip install -vv pyrudof --find-links=python/dist --no-index

- name: Test Built sdist
run: cd python/tests && python3 -m unittest -vvv discover
run: cd python/tests && python3 -m unittest discover -vvv

release:
name: Release
Expand Down