mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-05-06 19:01:21 +03:00
Run integration tests in CI
This commit is contained in:
parent
8a13cde778
commit
7989d1645f
9 changed files with 150 additions and 29 deletions
|
@ -52,6 +52,12 @@ function M.expectAlmostEqual(v1, v2, msg)
|
|||
end
|
||||
end
|
||||
|
||||
function M.expectGreaterOrEqual(v1, v2, msg)
|
||||
if not (v1 >= v2) then
|
||||
error(string.format('%s: %f >= %f', msg or '', v1, v2), 2)
|
||||
end
|
||||
end
|
||||
|
||||
local localTests = {}
|
||||
local localTestRunner = nil
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue