mirror of
https://github.com/Insality/druid.git
synced 2025-06-27 02:17:52 +02:00
Update deployer sha
This commit is contained in:
parent
be03a5bd50
commit
f36986ed1f
@ -2,7 +2,7 @@
|
|||||||
bob_folder=./
|
bob_folder=./
|
||||||
|
|
||||||
# You can point bob version for project in format "filename:sha"
|
# You can point bob version for project in format "filename:sha"
|
||||||
bob_sha="196:11d2cd3a9be17b2fc5a2cb5cea59bbfb4af1ca96"
|
bob_sha=":868769ba7a3458db12d149188bf3be80a339a85c"
|
||||||
|
|
||||||
# Select Defold channel. Values: stable, beta, alpha
|
# Select Defold channel. Values: stable, beta, alpha
|
||||||
bob_channel="stable"
|
bob_channel="stable"
|
||||||
@ -14,4 +14,4 @@ use_latest_bob=false
|
|||||||
build_server="https://build.defold.com"
|
build_server="https://build.defold.com"
|
||||||
|
|
||||||
# Is need to build html report
|
# Is need to build html report
|
||||||
is_build_html_report=true
|
is_build_html_report=true
|
||||||
|
@ -1,21 +1,11 @@
|
|||||||
local deftest = require("deftest.deftest")
|
local deftest = require("deftest.deftest")
|
||||||
|
|
||||||
local tests = {
|
|
||||||
-- Test list
|
|
||||||
require("test.tests.test_button"),
|
|
||||||
require("test.tests.test_hover"),
|
|
||||||
require("test.tests.test_drag"),
|
|
||||||
require("test.tests.test_back_handler"),
|
|
||||||
require("test.tests.test_blocker"),
|
|
||||||
--require("test.tests.test_static_grid"),
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function init(self)
|
function init(self)
|
||||||
print('[DefTest]: Init of DefTest')
|
deftest.add(require("test.tests.test_button"))
|
||||||
for i = 1, #tests do
|
deftest.add(require("test.tests.test_hover"))
|
||||||
deftest.add(tests[i])
|
deftest.add(require("test.tests.test_drag"))
|
||||||
end
|
deftest.add(require("test.tests.test_back_handler"))
|
||||||
|
deftest.add(require("test.tests.test_blocker"))
|
||||||
|
|
||||||
local is_report = (sys.get_config_int("test.report", 0) == 1)
|
local is_report = (sys.get_config_int("test.report", 0) == 1)
|
||||||
deftest.run({ coverage = { enabled = is_report } })
|
deftest.run({ coverage = { enabled = is_report } })
|
||||||
|
Loading…
x
Reference in New Issue
Block a user