From 7d1bc32ad93d70b1d4814fc0b5bc2badb2aa1130 Mon Sep 17 00:00:00 2001 From: Oleksii Kliukin Date: Mon, 27 Jul 2015 13:06:44 +0200 Subject: [PATCH] potentially run the doctests for the scripts. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index db327c37..62d05a69 100644 --- a/setup.py +++ b/setup.py @@ -82,7 +82,7 @@ class PyTest(TestCommand): params['plugins'] = ['cov'] if self.junitxml: params['args'] += self.junitxml - params['args'] += ['--doctest-modules', HELPERS, '-s'] + params['args'] += ['--doctest-modules', HELPERS, '--doctest-modules', SCRIPTS, '-s'] errno = pytest.main(**params) sys.exit(errno)