e5cc92939a
This patch ensures we are running flake8 in a DRY fashion, using the same exclusions as used for pep8. Also fixed is the pep8 module version mismatch between the version required for hacking.py and the newer version used by flake8. Finally, the doctest run for pep8 was removed, and enabled for nose instead. Implements: blueprint grizzly-debt Change-Id: I8e19512df4cd37f7ad637b66dff0a5982d14482c
21 lines
477 B
INI
21 lines
477 B
INI
[nosetests]
|
|
where=marconi/tests
|
|
verbosity=2
|
|
|
|
with-doctest = true
|
|
|
|
cover-package = marconi
|
|
cover-html = true
|
|
cover-erase = true
|
|
cover-inclusive = true
|
|
|
|
; Disabled: Causes a bug in testtools to manifest.
|
|
; Trigger: self.assertX(condition), where condition == False.
|
|
;
|
|
; In "testtools/testresult/real.py" the traceback is set to
|
|
; None in _details_to_exc_info(), but the inspect_traceback()
|
|
; method in nose/inspector.py requires a traceback-like object.
|
|
;
|
|
; detailed-errors = 1
|
|
|