-
Notifications
You must be signed in to change notification settings - Fork 22
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
Segfaults on windows starting ~2022/01/30 #25
Comments
@GabrielBB, any thoughts here? I'm more than happy to help debug. we've got a number of repos using this action, all of which are failing to pass on windows at the moment... so I've got some motivation to work on it :) |
i was able to narrow it down to a python environment related issue. Something has changed, but I'm not sure where. # using actions/setup-python above...
- uses: GabrielBB/xvfb-action@v1
with:
run: pytest in the last few days, it now requires: - uses: GabrielBB/xvfb-action@v1
with:
run: python -m pytest I think it's safe to say it's unrelated to xvfb-action, so will close this. |
* try `python -m` before pytest GabrielBB/xvfb-action#25 (comment) * typo * same fix to build-main
Yesterday, we started seeing all of our windows tests fail immediately with:
failed with exit code 3221225477
(see for example: https://github.com/napari/napari/actions/runs/1768885019)
It appears that manually performing the os check, and not using this action on windows fixes it:
see napari/napari#4031
Any thoughts on what might have changed in the last couple days that would break the "no-op" functionality on windows for this action?
The text was updated successfully, but these errors were encountered: