File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -106,6 +106,8 @@ jobs:
106106 uv-dependency-install-flags : " --all-extras --group tests"
107107 - name : Run tests
108108 run : |
109+ # Warm up the speed tests, allowing failure
110+ uv run pytest tests/integration/database/test_integration_speed.py || true
109111 uv run pytest -r a -v src tests --doctest-modules --cov=src --cov-report=term-missing --cov-report=xml
110112 uv run coverage report
111113 - name : Upload coverage reports to Codecov with GitHub Action
@@ -275,7 +277,8 @@ jobs:
275277 # Required for building the locked version of the package
276278 # with pdm-build-locked (see pyproject.toml)
277279 run : |
278- pdm lock --group :all --strategy inherit_metadata
280+ pdm lock --group :all --strategy inherit_metadata --python="<3.13"
281+ pdm lock --group :all --python=">=3.13" --append
279282 - name : Build package
280283 run : |
281284 uv build
Original file line number Diff line number Diff line change 4242 # Required for building the locked version of the package
4343 # with pdm-build-locked (see pyproject.toml)
4444 run : |
45- pdm lock --group :all --strategy inherit_metadata
45+ pdm lock --group :all --strategy inherit_metadata --python="<3.13"
46+ pdm lock --group :all --python=">=3.13" --append
4647 - name : Publish to PyPI
4748 run : |
4849 uv build
Original file line number Diff line number Diff line change 3535 # Required for building the locked version of the package
3636 # with pdm-build-locked (see pyproject.toml)
3737 run : |
38- pdm lock --group :all --strategy inherit_metadata
38+ pdm lock --group :all --strategy inherit_metadata --python="<3.13"
39+ pdm lock --group :all --python=">=3.13" --append
3940 - name : Add version to environment
4041 run : |
4142 PROJECT_VERSION=`sed -ne 's/^version = "\([0-9\.a]*\)"/\1/p' pyproject.toml`
You can’t perform that action at this time.
0 commit comments