Skip to content

Commit 7d3810d

Browse files
authored
Merge branch 'devel' into async-sftp
2 parents a7988a9 + 6cbf2dd commit 7d3810d

File tree

5 files changed

+62
-9
lines changed

5 files changed

+62
-9
lines changed

.codecov.yml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
3+
codecov:
4+
notify:
5+
after_n_builds: 26 # Number of test matrix+lint jobs uploading coverage
6+
wait_for_ci: false
7+
8+
require_ci_to_pass: false
9+
10+
token: >- # notsecret # repo-scoped, upload-only, stability in fork PRs
11+
78c6cd01-1f6b-428a-8be0-9069e6073d6d
12+
13+
comment:
14+
require_changes: true
15+
16+
coverage:
17+
range: 100..100
18+
status:
19+
patch:
20+
default:
21+
target: 100%
22+
pytest:
23+
target: 100%
24+
flags:
25+
- pytest
26+
typing:
27+
flags:
28+
- MyPy
29+
project:
30+
default:
31+
target: 100%
32+
lib:
33+
flags:
34+
- pytest
35+
paths:
36+
- src/
37+
target: 100%
38+
packaging:
39+
paths:
40+
- packaging/
41+
target: 75.24%
42+
tests:
43+
flags:
44+
- pytest
45+
paths:
46+
- tests/
47+
target: 100%
48+
typing:
49+
flags:
50+
- MyPy
51+
target: 100%
52+
53+
...

.github/workflows/ci-cd.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ jobs:
165165
${{ steps.changelog-draft-name.outputs.filename-base }}.rst
166166
steps:
167167
- name: Switch to using Python 3.11 by default
168-
uses: actions/setup-python@v5.1.1
168+
uses: actions/setup-python@v5.3.0
169169
with:
170170
python-version: 3.11
171171
- name: >-
@@ -438,7 +438,7 @@ jobs:
438438

439439
steps:
440440
- name: Switch to using Python 3.11
441-
uses: actions/setup-python@v5.1.1
441+
uses: actions/setup-python@v5.3.0
442442
with:
443443
python-version: 3.11
444444

@@ -861,7 +861,7 @@ jobs:
861861

862862
steps:
863863
- name: Switch to using Python ${{ matrix.python-version }}
864-
uses: actions/setup-python@v5.1.1
864+
uses: actions/setup-python@v5.3.0
865865
with:
866866
python-version: ${{ matrix.python-version }}
867867

@@ -1398,7 +1398,7 @@ jobs:
13981398

13991399
steps:
14001400
- name: Switch to using Python 3.11 by default
1401-
uses: actions/setup-python@v5.1.1
1401+
uses: actions/setup-python@v5.3.0
14021402
with:
14031403
python-version: 3.11
14041404

@@ -1899,7 +1899,7 @@ jobs:
18991899
path: dist/
19001900

19011901
- name: Switch to Python 3.11
1902-
uses: actions/setup-python@v5.1.1
1902+
uses: actions/setup-python@v5.3.0
19031903
with:
19041904
python-version: 3.11
19051905
- name: >-

.github/workflows/reusable-build-wheel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
9494
steps:
9595
- name: Switch to using Python 3.11 by default
96-
uses: actions/setup-python@v5.1.1
96+
uses: actions/setup-python@v5.3.0
9797
with:
9898
python-version: 3.11
9999

.github/workflows/reusable-linters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
- uses: actions/[email protected]
3535
- name: Set up Python ${{ matrix.python-version }}
36-
uses: actions/setup-python@v5.1.1
36+
uses: actions/setup-python@v5.3.0
3737
with:
3838
python-version: ${{ matrix.python-version }}
3939
- name: >-

.github/workflows/reusable-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
}} libssh-dev
104104
- name: Switch 🐍 to v${{ inputs.python-version }}
105105
id: python-install
106-
uses: actions/setup-python@v5.1.1
106+
uses: actions/setup-python@v5.3.0
107107
with:
108108
python-version: ${{ inputs.python-version }}
109109

@@ -248,7 +248,7 @@ jobs:
248248
&& exit 1
249249
shell: bash
250250
- name: Send coverage data to Codecov
251-
uses: codecov/codecov-action@v4.5.0
251+
uses: codecov/codecov-action@v5.0.0
252252
with:
253253
files: .test-results/pytest/cov.xml
254254
flags: >-

0 commit comments

Comments
 (0)