Skip to content

Commit eda4d48

Browse files
authored
Update config.yml
1 parent 94714c2 commit eda4d48

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.circleci/config.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,9 @@ version: 2.0
33
build_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

@@ -19,7 +16,7 @@ jobs:
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
@@ -29,7 +26,7 @@ jobs:
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

0 commit comments

Comments
 (0)