File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 10
10
- name : Checkout
11
11
uses : actions/checkout@v4
12
12
- name : Setup Python
13
- uses : actions/setup-python@v4
13
+ uses : actions/setup-python@v5
14
14
with :
15
15
python-version : " 3.8"
16
16
- name : Install nox
Original file line number Diff line number Diff line change 41
41
"asyncmock" ,
42
42
"pytest" ,
43
43
"pytest-cov" ,
44
- "pytest-asyncio" ,
44
+ "pytest-asyncio<0.23 " ,
45
45
]
46
46
UNIT_TEST_EXTERNAL_DEPENDENCIES : List [str ] = []
47
47
UNIT_TEST_LOCAL_DEPENDENCIES : List [str ] = []
Original file line number Diff line number Diff line change @@ -139,6 +139,10 @@ def pytype(session):
139
139
def docfx(session):""" ,
140
140
)
141
141
142
+ # Remove once issues with pytest-asyncio 0.23.x have been resolved
143
+ # https://github.com/pytest-dev/pytest-asyncio/issues?q=is%3Aissue+is%3Aopen+0.23.2+
144
+ s .replace ("noxfile.py" , "\" pytest-asyncio\" " , "\" pytest-asyncio<0.23\" " )
145
+
142
146
python .py_samples (skip_readmes = True )
143
147
144
148
# run format session for all directories which have a noxfile
You can’t perform that action at this time.
0 commit comments