File tree Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Original file line number Diff line number Diff line change 68
68
python -m build
69
69
twine check dist/*
70
70
- name : Upload coverage
71
- uses : codecov/codecov-action@v3
71
+ uses : codecov/codecov-action@v4
72
72
with :
73
73
fail_ci_if_error : true
74
+ token : ${{ secrets.CODECOV_TOKEN }}
74
75
75
76
check : # This job does nothing and is only used for the branch protection
76
77
if : always()
Original file line number Diff line number Diff line change 2
2
aiohttp == 3.9.1
3
3
aiomcache == 0.8.1
4
4
cryptography == 41.0.7
5
- docker == 6 .1.3
5
+ docker == 7 .1.0
6
6
multidict == 6.0.4
7
7
pynacl == 1.5.0
8
8
pytest == 7.4.3
Original file line number Diff line number Diff line change @@ -35,15 +35,6 @@ def unused_port() -> int: # pragma: no cover
35
35
return port
36
36
37
37
38
- @pytest .fixture (scope = "session" )
39
- def event_loop () -> Iterator [asyncio .AbstractEventLoop ]:
40
- """Redefine event_loop with session scope (from pytest-asyncio)."""
41
- policy = asyncio .get_event_loop_policy ()
42
- loop = policy .new_event_loop ()
43
- yield loop
44
- loop .close ()
45
-
46
-
47
38
@pytest .fixture (scope = "session" )
48
39
def session_id () -> str :
49
40
"""Unique session identifier, random string."""
You can’t perform that action at this time.
0 commit comments