Skip to content
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

test: is the leading slash breaking Windows tests? #1178

Merged
merged 3 commits into from
Mar 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
test: is the leading slash breaking Windows tests?
  • Loading branch information
jpivarski committed Mar 20, 2024
commit da0e77f5afaec4c5e72e01cd7682f998867747ab
2 changes: 1 addition & 1 deletion tests/test_0692_fsspec_writing.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def test_fsspec_writing_local(tmp_path, scheme):
)
@pytest.mark.parametrize(
"slash_prefix",
["", "/"],
[""],
)
def test_fsspec_writing_local_uri(tmp_path, scheme, slash_prefix, filename):
uri = scheme + slash_prefix + os.path.join(tmp_path, "some", "path", filename)
Expand Down