We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b2a6c4 commit e7e49a6Copy full SHA for e7e49a6
test/tarantool/cpu_metrics_test.lua
@@ -14,6 +14,8 @@ end)
14
15
g.test_cpu = function(cg)
16
cg.server:exec(function()
17
+ t.skip('Flaky test, see https://github.com/tarantool/metrics/issues/492')
18
+
19
local metrics = require('metrics')
20
local cpu = require('metrics.tarantool.cpu')
21
local utils = require('test.utils') -- luacheck: ignore 431
@@ -26,7 +28,6 @@ g.test_cpu = function(cg)
26
28
t.assert(user_time_metric)
27
29
t.assert(system_time_metric)
30
t.assert(user_time_metric[1].value > 0)
- t.xfail_if(not (system_time_metric[1].value > 0), 'Flaky test')
31
t.assert(system_time_metric[1].value > 0)
32
end)
33
end
0 commit comments