diff --git a/mypy/test/teststubtest.py b/mypy/test/teststubtest.py index e226c751fcfb..b1cf39464a28 100644 --- a/mypy/test/teststubtest.py +++ b/mypy/test/teststubtest.py @@ -848,9 +848,3 @@ def test_config_file(self) -> None: ) output = run_stubtest(stub=stub, runtime=runtime, options=[], config_file=config_file) assert output == "" - - -class StubtestIntegration(unittest.TestCase): - def test_typeshed(self) -> None: - # check we don't crash while checking typeshed - test_stubs(parse_options(["--check-typeshed"])) diff --git a/runtests.py b/runtests.py index 34d0eb712125..09b99992d1dc 100755 --- a/runtests.py +++ b/runtests.py @@ -28,7 +28,6 @@ MYPYC_EXTERNAL = 'TestExternal' MYPYC_COMMAND_LINE = 'TestCommandLine' ERROR_STREAM = 'ErrorStreamSuite' -STUBTEST_INTEGRATION = 'StubtestIntegration' ALL_NON_FAST = [ @@ -45,16 +44,12 @@ MYPYC_EXTERNAL, MYPYC_COMMAND_LINE, ERROR_STREAM, - STUBTEST_INTEGRATION, ] # These must be enabled by explicitly including 'mypyc-extra' on the command line. MYPYC_OPT_IN = [MYPYC_RUN, MYPYC_RUN_MULTI] -# These must be enabled by explicitly including 'stubtest' on the command line. -STUBTEST_OPT_IN = [STUBTEST_INTEGRATION] - # We split the pytest run into three parts to improve test # parallelization. Each run should have tests that each take a roughly similar # time to run. @@ -82,7 +77,6 @@ # Mypyc tests that aren't run by default, since they are slow and rarely # fail for commits that don't touch mypyc 'mypyc-extra': 'pytest -k "%s"' % ' or '.join(MYPYC_OPT_IN), - 'stubtest': 'pytest -k "%s"' % ' or '.join(STUBTEST_OPT_IN), } # Stop run immediately if these commands fail