From 33ce48ba42a9ae5fe89bdf8df7492df3391b785a Mon Sep 17 00:00:00 2001 From: Adam Souzis Date: Tue, 29 Oct 2024 13:09:25 -0700 Subject: [PATCH] fix test for Python 3.13 --- tests/test_constraints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_constraints.py b/tests/test_constraints.py index 63ba8d38..3739c439 100644 --- a/tests/test_constraints.py +++ b/tests/test_constraints.py @@ -19,7 +19,7 @@ def _verify_mypy(path): - stdout, stderr, return_code = api.run([path]) + stdout, stderr, return_code = api.run(["--disable-error-code=override", path]) if stdout: print(stdout) assert "no issues found in 1 source file" in stdout