Skip to content

Commit 1bb34a5

Browse files
authored
Merge branch 'upstream' into patch-4
2 parents dcafd04 + a435b39 commit 1bb34a5

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
@@ -1,27 +1,23 @@
11
version: 2.1
22

3-
build_and_test: &build_and_test_steps
4-
- checkout
5-
# pipx is already installed, but `pipx list` is empty
6-
- run: python --version ; pip --version ; pipx --version ; pwd ; ls -l
7-
- run: pip install pytest -r requirements.txt
8-
- run: pip install --editable .
9-
- run: pytest
10-
11-
123
jobs:
134
pre-commit:
145
docker:
156
- image: cimg/python:3.14
167
steps:
178
- checkout
9+
# pipx is already installed, but `pipx list` is empty
10+
- run: python --version ; pip --version ; pipx --version ; pwd ; ls -l
1811
- run: pipx run pre-commit run --all-files --show-diff-on-failure
1912

2013
pytest:
2114
docker:
2215
- image: cimg/python:3.14
23-
steps: *build_and_test_steps
24-
16+
steps:
17+
- checkout
18+
- run: pip install pytest -r requirements.txt
19+
- run: pip install --editable .
20+
- run: pytest
2521

2622
workflows:
2723
build:

0 commit comments

Comments
 (0)