From 284acce072f2ee2f984ba605b2704d0aa289a50a Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Thu, 11 May 2017 08:16:28 -0400 Subject: [PATCH] Add a pytest.ini. --- pytest.ini | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..6f4f503 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,10 @@ +[pytest] +addopts = --doctest-modules + +# Ignore broken files inblackbox test directories +norecursedirs = .* docs scripts + +# Activate `clean_jedi_cache` fixture for all tests. This should be +# fine as long as we are using `clean_jedi_cache` as a session scoped +# fixture. +usefixtures = clean_parso_cache