From dca617f32ffa76ae6e9efccd9c6be1759c4c7921 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Tue, 25 Aug 2020 10:38:09 +0200 Subject: [PATCH] Tell pytest not to recurse in dotdirs. pytest wastes a lot of time in .hypothesis and .git; this commit excludes them. --- pytest.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest.ini b/pytest.ini index 7cc9504..6ee979e 100644 --- a/pytest.ini +++ b/pytest.ini @@ -2,4 +2,4 @@ # We need this to avoid conflicts between the autoloaded fixture, and the # manually loaded one. addopts = -p no:pytest_swh_scheduler -norecursedirs = docs +norecursedirs = docs .*