Skip to content

Commit 41453b5

Browse files
committed
At least make other tests run
1 parent 76a9787 commit 41453b5

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
github.event_name != 'pull_request'
8989
9090
strategy:
91-
fail-fast: true
91+
fail-fast: false
9292
matrix:
9393
os: [Ubuntu, MacOS]
9494
python:

src/pip/_internal/operations/install/wheel.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -641,11 +641,7 @@ def pyc_output_path(path: str) -> str:
641641
with warnings.catch_warnings():
642642
warnings.filterwarnings('ignore')
643643
for path in pyc_source_file_paths():
644-
success = compileall.compile_file(
645-
ensure_str(path, encoding=sys.getfilesystemencoding()),
646-
force=True,
647-
quiet=True,
648-
)
644+
success = compileall.compile_file(path, force=True, quiet=True)
649645
if success:
650646
pyc_path = pyc_output_path(path)
651647
assert os.path.exists(pyc_path)

0 commit comments

Comments
 (0)