File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -37,15 +37,28 @@ jobs:
37
37
enable-cache : true
38
38
cache-dependency-glob : " pyproject.toml"
39
39
github-token : ${{ secrets.GITHUB_TOKEN }}
40
+
40
41
- name : Install tox
41
42
run : uv tool install --python-preference only-managed --python 3.13 tox --with tox-uv
43
+
42
44
- name : Install Python
43
45
if : startsWith(matrix.env, '3.') && matrix.env != '3.13'
44
46
run : uv python install --python-preference only-managed ${{ matrix.env }}
47
+
45
48
- name : Setup test suite
46
49
run : tox run -vv --notest --skip-missing-interpreters false -e ${{ matrix.env }}
50
+
47
51
- name : Run test suite
48
52
run : tox run --skip-pkg-install -e ${{ matrix.env }}
53
+ COV_CMD=$(if [ ${{ matrix.env }} == 3.12 ]; then echo "--cov=pytest_echo --cov-report=xml"; else echo ; fi) tox run --skip-pkg-install -e ${{ matrix.env }} | paste -sd "," -)
54
+
49
55
env :
50
56
PYTEST_ADDOPTS : " -vv --durations=20"
51
57
DIFF_AGAINST : HEAD
58
+
59
+ # - name: Upload coverage to Codecov
60
+ # uses: codecov/codecov-action@v5
61
+ # if: ${{ success() && matrix.python-version == 3.12 }}
62
+ # with:
63
+ # env_vars: OS
64
+ # name: codecov-pytest-order
Original file line number Diff line number Diff line change 1
1
2.0
2
2
---
3
3
* add support python 3.9..3.13
4
- *
4
+ * add typing
5
+
5
6
6
7
1.8.1
7
8
-----
You can’t perform that action at this time.
0 commit comments