From c85990b97de1b0aea36d0e1b32ac7b638c2ae46d Mon Sep 17 00:00:00 2001 From: Valentin Lorentz <vlorentz@softwareheritage.org> Date: Tue, 25 Aug 2020 10:40:13 +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 c8e8c197..7a1413f2 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,5 +1,5 @@ [pytest] addopts = --doctest-modules -norecursedirs = docs +norecursedirs = docs .* markers = fs: tests that involve filesystem ios -- GitLab