-
Notifications
You must be signed in to change notification settings - Fork 12
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
[DO NOT MERGE] Testing pytest regression for #11895 #153
Conversation
e1dbf39
to
032936d
Compare
I'm having trouble running this PR for more recent Python versions (where the development branch can be used), help appreciated. |
The requirements.txt is parsed by the setup.py and used to populate install_requires and extra_requires, so using requirements from github will likely not work. I'm not sure if you can specify github links for But to do this quickly, you can probably hack .github/workflows/tests.yml to get what you want. After line 328, which should look like:
you can add the pip install line to target the specific dev version of pytest. To get rid of lower python versions, just comment them out in the test.yml. (Lines 156-295) |
Thanks for the explanation, that will do -- I do not all builds to pass, just would like to test to ensure your original problem was fixed. I did change |
You forgot to remove the change from requirements.txt, I commited it and started the CI for you. |
Reduced the test matrix now -- CI is configured to stop on first failure, so it stopped immediately in 3.6 (which is no longer supported by the installed pytest version). |
Looks like this failed, if you know how to give specific users to run CI without needing me to manually click "run" each time, I'm willing to give you that permission, but I'm distracted with other tasks / meetings, so I don't have the focus to search for the right way to do this, but if you send a pointer to instructions I'll follow them. |
I believe my PRs would automatically trigger the GH Actions workflow after my first contribution, or if you give me access right away as a contributor. However no rush, I'm also taking small stabs at this when I have some free time. |
Just noticed you sent me an invitation, thanks -- I will just test this a bit and then remove myself. 👍 |
From the logs, the failures seem unrelated to the reported originally in pytest-dev/pytest#11895 (comment):
So it seems the original issue is fixed? |
It seems like pytest-dev/pytest#11936 fixed the path issue! 🎉 Not sure why the above failures are happening, but they do look unrelated. Those particular tests are the ones I ported from pytest's doctest test suite, so maybe something changed there. In any case, when the new version of pytest releases I'll remove the windows patch on my side and see if the error persists. |
Thanks for taking another look. Let's keep this open until pytest-dev/pytest#11936 gets merged, as we are discussing different alternatives there. Don't worry I will close this myself. |
Thanks @Erotemic for everything, the fix has been merged and this can be closed now. Can you please remove my access now? Thanks again. |
No need, I found how to do it myself, thanks. |
This PR is only to ensure pytest-dev/pytest#11936 fixes the original regression, as I could not reproduce this on my local machine.