Skip to content

Commit 77bb43d

Browse files
authored
Update config.yml
1 parent 1086d08 commit 77bb43d

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

.circleci/config.yml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,13 @@ version: 2.0
22

33
build_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

0 commit comments

Comments
 (0)