Skip to content

Commit

Permalink
At least make other tests run
Browse files Browse the repository at this point in the history
  • Loading branch information
uranusjr committed Aug 19, 2021
1 parent 76a9787 commit 41453b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
github.event_name != 'pull_request'
strategy:
fail-fast: true
fail-fast: false
matrix:
os: [Ubuntu, MacOS]
python:
Expand Down
6 changes: 1 addition & 5 deletions src/pip/_internal/operations/install/wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,11 +641,7 @@ def pyc_output_path(path: str) -> str:
with warnings.catch_warnings():
warnings.filterwarnings('ignore')
for path in pyc_source_file_paths():
success = compileall.compile_file(
ensure_str(path, encoding=sys.getfilesystemencoding()),
force=True,
quiet=True,
)
success = compileall.compile_file(path, force=True, quiet=True)
if success:
pyc_path = pyc_output_path(path)
assert os.path.exists(pyc_path)
Expand Down

0 comments on commit 41453b5

Please sign in to comment.