@@ -113,7 +113,7 @@ def default(session, install_grpc=True):
113
113
pytest_args = [
114
114
"python" ,
115
115
"-m" ,
116
- "py.test " ,
116
+ "pytest " ,
117
117
* (
118
118
# Helpful for running a single test or testfile.
119
119
session .posargs
@@ -146,13 +146,13 @@ def default(session, install_grpc=True):
146
146
session .run (* pytest_args )
147
147
148
148
149
- @nox .session (python = ["3.7" , "3.8" , "3.9" , "3.10" ])
149
+ @nox .session (python = ["3.7" , "3.8" , "3.9" , "3.10" , "3.11" ])
150
150
def unit (session ):
151
151
"""Run the unit test suite."""
152
152
default (session )
153
153
154
154
155
- @nox .session (python = ["3.6 " , "3.7 " , "3.8 " , "3.9 " , "3.10 " ])
155
+ @nox .session (python = ["3.7 " , "3.8 " , "3.9 " , "3.10 " , "3.11 " ])
156
156
def unit_grpc_gcp (session ):
157
157
"""Run the unit test suite with grpcio-gcp installed."""
158
158
constraints_path = str (
@@ -166,7 +166,7 @@ def unit_grpc_gcp(session):
166
166
default (session )
167
167
168
168
169
- @nox .session (python = ["3.8" , "3.10" ])
169
+ @nox .session (python = ["3.8" , "3.10" , "3.11" ])
170
170
def unit_wo_grpc (session ):
171
171
"""Run the unit test suite w/o grpcio installed"""
172
172
default (session , install_grpc = False )
0 commit comments