-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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] python-package "regular" CI jobs failing to install dependencies #6282
Comments
I believe the command that's failing is the uninstall, maybe it's due to a difference between installing with mamba and trying to uninstall with conda. Line 312 in 255c93b
Line 322 in 255c93b
I can submit a PR with that change if you think that may be it. |
ooooo interesting. Yeah I'd welcome that PR, thank you! |
Oh sorry I hadn't seen #6283, do you want me to create a new one or push to that branch? |
whatever's easier for you! No preference. |
If that doesn't work, could you test another idea I just had? Maybe the problem is that the package we install is named Line 128 in 255c93b
but then we're asking Lines 322 to 325 in 255c93b
Maybe something has changed recently in Either way, I think we should probably be adding |
Co-authored-by: José Morales <[email protected]>
Description
The
TASK=regular
jobs in this project's CI run the Python package's unit tests and test a few other things:examples/
directorylightgbm
can be imported after all of its dependencies have been removedThose jobs are currently failing across all operating systems, with an error like this:
Reproducible example
Logs from latest commit on
master
:Linux_latest regular
(link)macOS regular
(link)regular (macOS-latest, Python 3.9)
(link)Environment info
LightGBM version or commit hash: 255c93b
Additional Comments
I don't see any of the dependencies like
dask
,dask-core
, etc. getting installed in the logs.It seems that this might be silently failing:
LightGBM/.ci/test.sh
Lines 128 to 135 in 255c93b
The text was updated successfully, but these errors were encountered: