$OpenBSD: patch-Makefile,v 1.5 2018/09/08 03:55:10 bket Exp $

Avoid use of pytest --with-doctest as this causes a regression test to fail
with "ImportError (Could not load inotify functions from libc)". Failure is
caused by the doctest module testing a piece of code that is linux-only. This
code is not used when running git-cola on OpenBSD.

Index: Makefile
--- Makefile.orig
+++ Makefile
@@ -72,7 +72,7 @@ FLAKE8_FLAGS += --format=pylint
 FLAKE8_FLAGS += --doctests
 
 PYTEST_FLAGS = $(QUIET) $(TEST_VERBOSE)
-PYTEST_FLAGS += --doctest-modules
+#PYTEST_FLAGS += --doctest-modules
 
 TOX_FLAGS = $(VERBOSE_SHORT) --develop --skip-missing-interpreters
 
