From 0d750e588dfbddff49a5af74a278051349aa4e6a Mon Sep 17 00:00:00 2001 From: Jeff Quast Date: Fri, 21 Nov 2014 23:18:45 -0800 Subject: Ignore .git folder during test discovery. On systems with slow hard disks, py.test can seemingly hang for a noticeable while -- because it's crawling the .git/ folder; instruct py.test to ignore it. --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 setup.cfg (limited to 'setup.cfg') diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..ae62686 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[pytest] +norecursedirs = .git -- cgit v1.2.1