File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed
Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -3,12 +3,9 @@ version: 2.0
33build_and_test : &build_and_test_steps
44 - checkout
55 # Do not use `sudo pip`
6- # pipx is already installed
6+ # pipx is already installed but `pipx list` is empty
77 - run : python --version ; pip --version ; pipx --version ; pwd ; ls -l
8- - run : pipx list
9- - run : pytest --version || true
10- - run : ruff --version || true
11- - run : pip install pytest ruff -r requirements.txt
8+ - run : pip install pytest -r requirements.txt
129 - run : pip install --editable .
1310 - run : pytest
1411
1916 - image : cimg/python:3.11
2017 steps :
2118 - checkout
22- - run : sudo pip install black codespell flake8
19+ - run : pipx install black codespell flake8 ruff
2320 - run : python --version ; pip --version ; pwd ; ls -l
2421 - run : codespell -L queenland,uint
2522 # stop the build if there are Python syntax errors or undefined names
2926 - run : black . --check
3027
3128
32- Python :
29+ Pytho3 :
3330 docker :
3431 - image : cimg/python:3.11
3532 steps : *build_and_test_steps
@@ -40,4 +37,4 @@ workflows:
4037 build :
4138 jobs :
4239 - StyleCheck
43- - Python
40+ - Pytho3
You can’t perform that action at this time.
0 commit comments