Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
- release/**
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
dist:
name: Create Distribution
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11.14", "3.12.13"]
python-version: ["3.13.1"]
steps:
- name: Configure git
run: |
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Install dependencies
run: uv sync --python ${{ matrix.python-version }}
- name: Run tests
run: uv run pytest --cov --junitxml=junit.xml -o junit_family=legacy
run: uv run pytest -n4 --cov --junitxml=junit.xml -o junit_family=legacy
- name: Upload results to Codecov
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.12.13
3.13.1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,5 +173,5 @@ networks:
```sh
uv sync
direnv allow
pytest
pytest -n4
```
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ build-backend = "setuptools.build_meta"
name = "devservices"
version = "1.2.4"
# 3.11 is just for internal pypi compat
# but we test/support on 3.13
requires-python = ">=3.11"
dependencies = [
"pyyaml",
Expand All @@ -21,13 +22,14 @@ dev = [
"freezegun",
"mypy",
"pre-commit",
"pytest",
"pytest>9",
Comment thread
joshuarli marked this conversation as resolved.
"pytest-cov",
"ruff",
"setuptools>=70",
"shellcheck-py",
"wheel",
"types-PyYAML",
"pytest-xdist>=3.5.0",
]

[project.scripts]
Expand All @@ -40,7 +42,7 @@ find = {}
url = "https://pypi.devinfra.sentry.io/simple"

[tool.mypy]
python_version = "3.12"
python_version = "3.13"
strict = true
ignore_missing_imports = true

Expand Down
37 changes: 34 additions & 3 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading