File tree Expand file tree Collapse file tree 1 file changed +8
-11
lines changed
Expand file tree Collapse file tree 1 file changed +8
-11
lines changed Original file line number Diff line number Diff line change @@ -366,20 +366,17 @@ def run_system(
366366
367367
368368@nox .session (python = SYSTEM_TEST_PYTHON_VERSIONS )
369- @nox .parametrize ("test_extra" , [True , False ])
370- def system (session : nox .sessions .Session , test_extra ):
369+ def system (session : nox .sessions .Session ):
371370 """Run the system test suite."""
372371 if session .python in ("3.7" , "3.8" , "3.9" ):
373372 session .skip ("Python 3.9 and below are not supported" )
374- if test_extra :
375- run_system (
376- session = session ,
377- prefix_name = "system" ,
378- test_folder = os .path .join ("tests" , "system" , "small" ),
379- check_cov = True ,
380- )
381- else :
382- system_noextras (session )
373+
374+ run_system (
375+ session = session ,
376+ prefix_name = "system" ,
377+ test_folder = os .path .join ("tests" , "system" , "small" ),
378+ check_cov = True ,
379+ )
383380
384381
385382@nox .session (python = DEFAULT_PYTHON_VERSION )
You can’t perform that action at this time.
0 commit comments