From 496fa104ffdd2429f3d5e3285062a446a057b5c9 Mon Sep 17 00:00:00 2001 From: Sergey B Kirpichev Date: Wed, 25 Sep 2024 09:59:31 +0300 Subject: [PATCH 1/2] Gitignore .venv/ and venv/ --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index b434fda9..2d6f0479 100644 --- a/.gitignore +++ b/.gitignore @@ -65,3 +65,7 @@ htmlcov/ # Ignore files cached by Hypothesis (including examples directory so far) .hypothesis/ + +# per-project directories for virtual environments +venv/ +.venv/ From 1df26ae33e59fcaa49c585f7e550638fc330e72e Mon Sep 17 00:00:00 2001 From: Sergey B Kirpichev Date: Wed, 25 Sep 2024 10:42:40 +0300 Subject: [PATCH 2/2] Relax default timeout for tests --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b0496c47..098bc58e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,7 +61,7 @@ addopts = "--durations=20 --doctest-modules --doctest-glob='*.rst'" norecursedirs = ['docs/plots', 'demo', '.eggs', '.git'] filterwarnings = ['error::DeprecationWarning'] xfail_strict = true -timeout = 300 +timeout = 600 [tool.coverage.run] branch = true omit = ['mpmath/tests/*']