Test 10min faster

Setuptools released their version with the fix at 2025-03-24 19:50:41 UTC, while we use exclude newer with 2025-03-24 20:00:00 UTC. We fix this by lowering the bound to 2025-03-24 19:00:00.
This commit is contained in:
konstin 2025-03-24 17:24:33 -04:00
parent 664c77a6e1
commit d8d8758f61

View file

@ -10270,7 +10270,7 @@ fn change_layout_custom_directory() -> Result<()> {
/// See: <https://github.com/astral-sh/uv/issues/12434>
#[test]
fn setuptools_non_normalized_setup_cfg() -> Result<()> {
let context = TestContext::new("3.12").with_exclude_newer("2025-03-24T20:00:00Z");
let context = TestContext::new("3.12").with_exclude_newer("2025-03-24T19:00:00Z");
let pyproject_toml = context.temp_dir.child("pyproject.toml");
pyproject_toml.touch()?;