From 27a3be3b4284699bd2c8cbfab0d301be849b72dc Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sun, 17 Dec 2017 21:35:39 +0100 Subject: [PATCH] Merge a commit that adds the build folder to the ignored paths --- conftest.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index 2567fcde..f693b940 100644 --- a/conftest.py +++ b/conftest.py @@ -5,7 +5,12 @@ import pytest import jedi -collect_ignore = ["setup.py"] +collect_ignore = [ + 'setup.py', + '__main__.py', + 'jedi/evaluate/compiled/subprocess/__main__.py', + 'build/', +] # The following hooks (pytest_configure, pytest_unconfigure) are used