We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is a spin-off of #1067, where a respective test had been added by @lengau. Happens only with Python >= 3.12 and under Windows.
In the real filessystem we get:
>>> PurePosixPath("C:").joinpath("/Program Files") PurePosixPath('/Program Files')
while in the fake filesystem this produces PurePosixPath('C:/Program Files') instead.
PurePosixPath('C:/Program Files')
The text was updated successfully, but these errors were encountered:
Fix PurePosixPath.joinpath under Windows
0cbc2f3
- fixes pytest-dev#1070
68c0a42
No branches or pull requests
This is a spin-off of #1067, where a respective test had been added by @lengau.
Happens only with Python >= 3.12 and under Windows.
In the real filessystem we get:
while in the fake filesystem this produces
PurePosixPath('C:/Program Files')
instead.The text was updated successfully, but these errors were encountered: