mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 05:16:10 +01:00
Refactor shared args in approvalTests.py
This commit is contained in:
parent
338e4ec1f8
commit
fa9416426a
@ -200,23 +200,25 @@ print("Running approvals against executable:")
|
|||||||
print(" " + cmdPath)
|
print(" " + cmdPath)
|
||||||
|
|
||||||
|
|
||||||
|
base_args = ["--order", "lex", "--rng-seed", "1", "--colour-mode", "none"]
|
||||||
|
|
||||||
## special cases first:
|
## special cases first:
|
||||||
# Standard console reporter
|
# Standard console reporter
|
||||||
approve("console.std", ["~[!nonportable]~[!benchmark]~[approvals] *", "--order", "lex", "--rng-seed", "1", "--colour-mode", "none"])
|
approve("console.std", ["~[!nonportable]~[!benchmark]~[approvals] *"] + base_args)
|
||||||
# console reporter, include passes, warn about No Assertions, limit failures to first 4
|
# console reporter, include passes, warn about No Assertions, limit failures to first 4
|
||||||
approve("console.swa4", ["~[!nonportable]~[!benchmark]~[approvals] *", "-s", "-w", "NoAssertions", "-x", "4", "--order", "lex", "--rng-seed", "1", "--colour-mode", "none"])
|
approve("console.swa4", ["~[!nonportable]~[!benchmark]~[approvals] *", "-s", "-w", "NoAssertions", "-x", "4"] + base_args)
|
||||||
|
|
||||||
## Common reporter checks: include passes, warn about No Assertions
|
## Common reporter checks: include passes, warn about No Assertions
|
||||||
reporters = ('console', 'junit', 'xml', 'compact', 'sonarqube', 'tap', 'teamcity', 'automake')
|
reporters = ('console', 'junit', 'xml', 'compact', 'sonarqube', 'tap', 'teamcity', 'automake')
|
||||||
for reporter in reporters:
|
for reporter in reporters:
|
||||||
filename = '{}.sw'.format(reporter)
|
filename = '{}.sw'.format(reporter)
|
||||||
common_args = ["~[!nonportable]~[!benchmark]~[approvals] *", "-s", "-w", "NoAssertions", "--order", "lex", "--rng-seed", "1", "--colour-mode", "none"]
|
common_args = ["~[!nonportable]~[!benchmark]~[approvals] *", "-s", "-w", "NoAssertions"] + base_args
|
||||||
reporter_args = ['-r', reporter]
|
reporter_args = ['-r', reporter]
|
||||||
approve(filename, common_args + reporter_args)
|
approve(filename, common_args + reporter_args)
|
||||||
|
|
||||||
## All reporters at the same time
|
## All reporters at the same time
|
||||||
|
|
||||||
common_args = ["~[!nonportable]~[!benchmark]~[approvals] *", "-s", "-w", "NoAssertions", "--order", "lex", "--rng-seed", "1", "--colour-mode", "none"]
|
common_args = ["~[!nonportable]~[!benchmark]~[approvals] *", "-s", "-w", "NoAssertions"] + base_args
|
||||||
filenames = ['{}.sw.multi'.format(reporter) for reporter in reporters]
|
filenames = ['{}.sw.multi'.format(reporter) for reporter in reporters]
|
||||||
reporter_args = []
|
reporter_args = []
|
||||||
for reporter, filename in zip(reporters, filenames):
|
for reporter, filename in zip(reporters, filenames):
|
||||||
|
Loading…
Reference in New Issue
Block a user