Skip to content

Commit 5559caa

Browse files
committed
Try always running pip on Cygwin as "python -m pip"
1 parent fce86d9 commit 5559caa

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/cygwin-test.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -55,20 +55,14 @@ jobs:
5555
# and cause subsequent tests to fail
5656
cat test/fixtures/.gitconfig >> ~/.gitconfig
5757
58-
- name: Ensure the "pip" command is available
59-
run: |
60-
# This is used unless, and before, an updated pip is installed.
61-
ln -s pip3 /usr/bin/pip
62-
6358
- name: Update PyPA packages
6459
run: |
6560
# Get the latest pip, wheel, and prior to Python 3.12, setuptools.
66-
python -m pip install -U pip $(pip freeze --all | grep -ow ^setuptools)
67-
python -m pip install -U wheel
61+
python -m pip install -U pip $(pip freeze --all | grep -ow ^setuptools) wheel
6862
6963
- name: Install project and test dependencies
7064
run: |
71-
pip install ".[test]"
65+
python -m pip install ".[test]"
7266
7367
- name: Show version and platform information
7468
run: |

0 commit comments

Comments
 (0)