-
Notifications
You must be signed in to change notification settings - Fork 9
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
gh-468: fix virtualenv in testing #471
Changes from all commits
d8261a0
b67cc5a
714d9ab
ccc39a9
fe92279
04c0333
b508d42
0cbe8b0
7a5a05d
ea084bc
2c38f3d
3db11ff
6132f5e
d215397
61ae493
deec472
085530e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -7,8 +7,12 @@ | |||
import nox | ||||
|
||||
# Options to modify nox behaviour | ||||
nox.options.default_venv_backend = "uv|virtualenv" | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed my issues locally using There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I remember we could not use I am surprised that it is working now. We still use the glass/.github/test-constraints.txt Line 10 in f6cfde4
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. But locally I'm not. With my |
||||
nox.options.reuse_existing_virtualenvs = True | ||||
nox.options.sessions = ["lint", "tests"] | ||||
nox.options.sessions = [ | ||||
"lint", | ||||
"tests", | ||||
] | ||||
|
||||
ALL_PYTHON = [ | ||||
"3.10", | ||||
|
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.
See wntrblm/nox#735 (comment)
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.
This is weird. I have never encountered this bug before.