Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'upstream' into patch-4
  • Loading branch information
cclauss authored Jan 2, 2026
commit 1bb34a5ff34e83afda6e20d3fbdfccaac71c176d
18 changes: 7 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,23 @@
version: 2.1

build_and_test: &build_and_test_steps
- checkout
# pipx is already installed, but `pipx list` is empty
- run: python --version ; pip --version ; pipx --version ; pwd ; ls -l
- run: pip install pytest -r requirements.txt
- run: pip install --editable .
- run: pytest


jobs:
pre-commit:
docker:
- image: cimg/python:3.14
steps:
- checkout
# pipx is already installed, but `pipx list` is empty
- run: python --version ; pip --version ; pipx --version ; pwd ; ls -l
- run: pipx run pre-commit run --all-files --show-diff-on-failure

pytest:
docker:
- image: cimg/python:3.14
steps: *build_and_test_steps

steps:
- checkout
- run: pip install pytest -r requirements.txt
- run: pip install --editable .
- run: pytest

workflows:
build:
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.