forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: clean up the build; enforce some tests
This now enforces success of a subset of tests (see mingw_ignorefile.txt) and runs smoketests on the build as well as after installation. Remove everything that is no longer needed after the previous patches: * the build uses -O3 by default * it sets fwrapv by default * __USE_MINGW_ANSI_STDIO is not needed anymore with c99 * it sets_WIN32_WINNT anyway * ncurses is fixed by patching the build * debug is handled by autotools * all ac_cv_* overrides are now handled in configure.ac * venvlauncher is handled by the main makefile * setting MSYS2_ARG_CONV_EXCL is now handled by the makefile * the import library is now installed by the makefile * _sysconfig_data overrides are handled at runtime anyway * we don't care about permissions.. (I think?)
- Loading branch information
Showing
2 changed files
with
68 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
ctypes.test.test_loading.LoaderTest.test_load_dll_with_flags | ||
distutils.tests.test_bdist_dumb.BuildDumbTestCase.test_simple_built | ||
distutils.tests.test_cygwinccompiler.CygwinCCompilerTestCase.test_get_versions | ||
distutils.tests.test_util.UtilTestCase.test_change_root | ||
test.datetimetester.TestLocalTimeDisambiguation_Fast.* | ||
test.datetimetester.TestLocalTimeDisambiguation_Pure.* | ||
test.test_cmath.CMathTests.test_specific_values | ||
test.test_cmd_line_script.CmdLineTest.test_consistent_sys_path_for_direct_execution | ||
test.test_compileall.CommandLineTestsNoSourceEpoch.* | ||
test.test_compileall.CommandLineTestsWithSourceEpoch.* | ||
test.test_compileall.CompileallTestsWithoutSourceEpoch.* | ||
test.test_compileall.CompileallTestsWithSourceEpoch.* | ||
test.test_import.ImportTests.test_dll_dependency_import | ||
test.test_math.MathTests.* | ||
test.test_ntpath.NtCommonTest.test_import | ||
test.test_os.StatAttributeTests.test_stat_block_device | ||
test.test_os.TestScandir.test_attributes | ||
test.test_os.UtimeTests.test_large_time | ||
test.test_platform.PlatformTest.test_architecture_via_symlink | ||
test.test_regrtest.ProgramsTestCase.test_pcbuild_rt | ||
test.test_regrtest.ProgramsTestCase.test_tools_buildbot_test | ||
test.test_site._pthFileTests.* | ||
test.test_site.HelperFunctionsTests.* | ||
test.test_site.StartupImportTests.* | ||
test.test_ssl.* | ||
test.test_strptime.CalculationTests.* | ||
test.test_strptime.StrptimeTests.test_weekday | ||
test.test_strptime.TimeRETests.test_compile | ||
test.test_tools.test_i18n.Test_pygettext.test_POT_Creation_Date | ||
test.test_venv.BasicTest.* | ||
test.test_venv.EnsurePipTest.* | ||
# flaky | ||
test.test__xxsubinterpreters.* | ||
test.test_asyncio.test_subprocess.SubprocessProactorTests.test_stdin_broken_pipe |