CI: cygwin 3.9.18 stalls in pip install with progress bars by mattip · Pull Request #25714 · numpy/numpy

@mattip

[skip azp][skip circle][skip cirrus]

Fixes #25708, apparently it is enough to disable progress bars. Maybe we should do this globally with a PIP_CONFIG_FILE, I doubt anyone enjoys seeing the progress reports in CI.

@mattip

[skip azp][skip circle][skip cirrus]

seberg

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice look like that really fixed it. Disabling the progress bar for CI in general seems like a nice idea (in which ever capacity), but this is great to just get fixed also.

@mattip

No, now it seems stuck on 63% of tests

@mattip

@seberg

FFT crashing in some thread-safety tests (the test that should run next) does seem like it may be an actual new issue? Ping @mhvk, although not sure if you are likely to have much insight.

If that is the case, it might make sense to just put this in anyway...

@rgommers

Maybe we should do this globally with a PIP_CONFIG_FILE, I doubt anyone enjoys seeing the progress reports in CI.

I'm not sure why, since there has never any problem before and in principle progress bar output in pip is there to avoid timeouts (zero output for a long time may cause CI to kill a job). Don't touch it unless there's a problem beyond Cygwin I'd say.

@rgommers rgommers changed the title BUG: cygwin 3.9.18 stalls in pip install with progress bars CI: cygwin 3.9.18 stalls in pip install with progress bars

Jan 29, 2024

@rgommers

Agreed that this seems fine to merge as is. What could be useful to check if the fft hang is new or a coincidence is to rebase this progress bar fix to before all the fft changes on a separate branch and trigger the Cygwin job on that branch.

@mattip