-
Notifications
You must be signed in to change notification settings - Fork 126
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
ci: try using tox-uv #738
base: main
Are you sure you want to change the base?
ci: try using tox-uv #738
Conversation
b03b9bd
to
e8bb33c
Compare
e8bb33c
to
1c02b22
Compare
Perhaps we could try using https://github.com/tox-dev/tox-gh? |
1c02b22
to
e7856f3
Compare
The hope here was to make the tests a bit faster; tox-gh might shorten the config, but wouldn't be faster (AFAIK). I don't understand why one test now uninstalls setuptools when it didn't before when running with tox-uv. |
Signed-off-by: Henry Schreiner <[email protected]>
@@ -68,10 +71,15 @@ jobs: | |||
- name: Setup python for tox | |||
uses: actions/setup-python@v5 | |||
with: | |||
python-version: 3.9 | |||
python-version: 3.12 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
python-version: 3.12 | |
python-version: "3.12" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, I think this isn't needed anymore, since I changed tox to be installed via uv tool
. Let's check that first.
Interesting, the three failures are: |
Speeds up CI a little bit. Closes #858.