Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update how we run tox for win CI builds #2923

Merged
merged 1 commit into from
Apr 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ windows_steps: &windows_steps
command: pip install --user tox
- run:
name: run tox
command: 'C:/Users/circleci.PACKER-6400C91A/AppData/Roaming/Python/Python311/Scripts/tox.exe -r'
command: python -m tox -r
- save_cache:
paths:
- .tox
Expand Down
1 change: 1 addition & 0 deletions newsfragments/2923.internal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update win wheel CI builds to use ``python -m tox -r`` instead of specifying the ``tox`` executable directly.