Skip to content
Snippets Groups Projects
Commit 0b763120 authored by Mick Jordan's avatar Mick Jordan
Browse files

Add app unit tests back to gate

parent d013af99
Branches
No related tags found
No related merge requests found
......@@ -249,12 +249,12 @@ def _fastr_gate_runner(args, tasks):
# check that the expected test output file is up to date
with mx_gate.Task('UnitTests: ExpectedTestOutput file check', tasks) as t:
if t:
if junit(['--tests', _gate_noapps_unit_tests(), '--check-expected-output']) != 0:
if junit(['--tests', _gate_unit_tests(), '--check-expected-output']) != 0:
t.abort('unit tests expected output check failed')
with mx_gate.Task('UnitTests', tasks) as t:
if t:
if junit(['--tests', _gate_noapps_unit_tests()]) != 0:
if junit(['--tests', _gate_unit_tests()]) != 0:
t.abort('unit tests failed')
mx_gate.add_gate_runner(_fastr_suite, _fastr_gate_runner)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment