The kitchen nox verifier already takes care of the sinlge -v flag.

Let's not double it.
This commit is contained in:
Pedro Algarvio 2019-03-15 15:28:54 +00:00
parent a2aa708f38
commit ff54f53640
No known key found for this signature in database
GPG key ID: BB36BF6584A298FF

View file

@ -151,7 +151,6 @@ def runtests(session, coverage):
_create_ci_directories()
cmd_args = [
'-v',
'--tests-logfile={}'.format(
os.path.join(REPO_ROOT, 'artifacts', 'logs', 'runtests.log')
)
@ -178,7 +177,7 @@ def pytest(session, coverage):
),
'--no-print-logs',
'-ra',
'-sv'
'-s'
] + session.posargs
if coverage is True: