@@ -39,8 +39,10 @@ def pytest_addoption(parser):
3939 parser .addoption ('--mxnet-full-version' , action = 'store' , default = MXNet .LATEST_VERSION )
4040 parser .addoption ('--ei-mxnet-full-version' , action = 'store' , default = MXNet .LATEST_VERSION )
4141 parser .addoption ('--pytorch-full-version' , action = 'store' , default = PyTorch .LATEST_VERSION )
42- parser .addoption ('--rl-coach-full-version' , action = 'store' ,
43- default = RLEstimator .COACH_LATEST_VERSION )
42+ parser .addoption ('--rl-coach-mxnet-full-version' , action = 'store' ,
43+ default = RLEstimator .COACH_LATEST_VERSION_MXNET )
44+ parser .addoption ('--rl-coach-tf-full-version' , action = 'store' ,
45+ default = RLEstimator .COACH_LATEST_VERSION_TF )
4446 parser .addoption ('--rl-ray-full-version' , action = 'store' ,
4547 default = RLEstimator .RAY_LATEST_VERSION )
4648 parser .addoption ('--sklearn-full-version' , action = 'store' , default = SKLEARN_VERSION )
@@ -128,7 +130,7 @@ def tf_version(request):
128130 return request .param
129131
130132
131- @pytest .fixture (scope = 'module' , params = ['0.10.1' , '0.10.1' , '0.11' , '0.11.0' ])
133+ @pytest .fixture (scope = 'module' , params = ['0.10.1' , '0.10.1' , '0.11' , '0.11.0' , '0.11.1' ])
132134def rl_coach_tf_version (request ):
133135 return request .param
134136
@@ -164,8 +166,13 @@ def pytorch_full_version(request):
164166
165167
166168@pytest .fixture (scope = 'module' )
167- def rl_coach_full_version (request ):
168- return request .config .getoption ('--rl-coach-full-version' )
169+ def rl_coach_mxnet_full_version (request ):
170+ return request .config .getoption ('--rl-coach-mxnet-full-version' )
171+
172+
173+ @pytest .fixture (scope = 'module' )
174+ def rl_coach_tf_full_version (request ):
175+ return request .config .getoption ('--rl-coach-tf-full-version' )
169176
170177
171178@pytest .fixture (scope = 'module' )
0 commit comments