Skip to content
Merged
Changes from 2 commits
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
2 changes: 1 addition & 1 deletion pytest_pyodide/copy_files_to_pyodide.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
)
for file, dest in new_files:
_copied_files[selenium].append((file, dest))
file_url = base_url + str(file.relative_to(base_path))
file_url = base_url + str(file.relative_to(base_path).as_posix())

Check warning on line 114 in pytest_pyodide/copy_files_to_pyodide.py

View check run for this annotation

Codecov / codecov/patch

pytest_pyodide/copy_files_to_pyodide.py#L114

Added line #L114 was not covered by tests
if file.suffix == ".whl" and install_wheels:
# wheel - install the wheel on the pyodide side before
# any fetches (and don't copy it)
Expand Down