potentially run the doctests for the scripts.

This commit is contained in:
Oleksii Kliukin
2015-07-27 13:06:44 +02:00
parent d85451efae
commit 7d1bc32ad9
+1 -1
View File
@@ -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)