-
Notifications
You must be signed in to change notification settings - Fork 428
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
Use lazy Index
in conda-build
#5363
Changes from all commits
331a655
1819c4c
057daa6
3b8ea4e
2f9f913
8733039
deacf0b
b3e9f99
3faaf1d
cd97efe
02bed68
739c60a
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 |
---|---|---|
|
@@ -124,19 +124,23 @@ filterwarnings = [ | |
# elevate conda-build's deprecated warning to an error | ||
"error::PendingDeprecationWarning:conda_build", | ||
"error::DeprecationWarning:conda_build", | ||
"ignore:Python 3.14 will, by default, filter extracted tar archives:DeprecationWarning:conda_package_streaming", | ||
# ignore numpy.distutils error | ||
'ignore:\s+`numpy.distutils` is deprecated:DeprecationWarning:conda_build._load_setup_py_data', | ||
# ignore conda-index error | ||
"ignore::PendingDeprecationWarning:conda_index", | ||
"ignore::DeprecationWarning:conda_index", | ||
"ignore:Python 3.14 will, by default, filter extracted tar archives and reject files or modify their metadata:DeprecationWarning", | ||
"ignore:conda.core.index._supplement_index_with_system is pending deprecation:PendingDeprecationWarning:conda", | ||
"ignore:conda.core.index._make_virtual_package is pending deprecation:PendingDeprecationWarning:conda", | ||
Comment on lines
+134
to
+135
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. We should fix these warnings instead of ignoring them, I'd say. 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. Well, yes, but these come from conda-libmamba-solver, so I judged that fix outside the scope of this PR. |
||
] | ||
markers = [ | ||
"serial: execute test serially (to avoid race conditions)", | ||
"slow: execute the slow tests if active", | ||
"sanity: execute the sanity tests", | ||
"no_default_testing_config: used internally to disable monkeypatching for testing_config", | ||
"benchmark: execute the benchmark tests", | ||
"memray: memory use tests", | ||
] | ||
minversion = 3.0 | ||
norecursedirs = ["tests/test-recipes/*"] | ||
|
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.
In principle, we won't need this during the deprecation period, right? So we can release a new conda without this PR and it should work, correct?
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.
Yes.