Skip to content

Commit b1de9ae

Browse files
github-actions[bot]seanh
authored andcommitted
Apply updates from cookiecutter
This automated commit applies the latest updates from our cookiecutters [1] to this repo. [1]: https://github.com/hypothesis/cookiecutters
1 parent a91d6a7 commit b1de9ae

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ jobs:
6262
env:
6363
COVERAGE_FILE: .coverage.${{ matrix.python-version }}
6464
- name: Upload coverage file
65-
uses: actions/upload-artifact@v3
65+
uses: actions/upload-artifact@v4
6666
with:
67-
name: coverage
67+
name: coverage-python${{ matrix.python-version}}
6868
path: .coverage.*
6969
include-hidden-files: true
7070
Coverage:
@@ -77,9 +77,10 @@ jobs:
7777
with:
7878
python-version: '3.12'
7979
- name: Download coverage files
80-
uses: actions/download-artifact@v3
80+
uses: actions/download-artifact@v4
8181
with:
82-
name: coverage
82+
pattern: coverage-python*
83+
merge-multiple: true
8384
- run: python -m pip install 'tox<4'
8485
- run: tox -e coverage
8586
Functests:

pyproject.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,3 @@ module= [
158158
"tests.*",
159159
]
160160
ignore_errors = true
161-
162-
163-
[tool.hdev]
164-
project_name = "tox-envfile"
165-
project_type = "library"

0 commit comments

Comments
 (0)