File tree Expand file tree Collapse file tree 1 file changed +7
-11
lines changed
Expand file tree Collapse file tree 1 file changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -2,17 +2,13 @@ version: 2.0
22
33build_and_test : &build_and_test_steps
44 - checkout
5- - run : pip install pipx || true
6- - run : pip install --user pipx || true
7- - run : sudo pip install pipx || true
8- - run : pip --version || true
9- - run : pip3 --version || true
10- - run : python --version || true
11- - run : python3 --version || true
12- - run : sudo pip install --upgrade pip || true
13- - run : sudo pip install pytest -r requirements.txt
14- - run : pip install --user .
15- - run : python --version ; pip --version ; pwd ; ls -l
5+ # Do not use `sudo pip`
6+ # Pipx, pytest, ruff, are already installed
7+ - run : python --version ; pip --version ; pipx --version ; pytest --version ; pwd ; ls -l
8+ - run : pipx --list
9+ - run : ruff --version || true
10+ - run : pip install requirements.txt
11+ - run : pip install --editable .
1612 - run : pytest
1713
1814
You can’t perform that action at this time.
0 commit comments