From f00c20a5aec05356007d56b8cd89c8907dc6cd6d Mon Sep 17 00:00:00 2001 From: Yuri Tkachenko Date: Thu, 8 Feb 2024 16:09:01 +0100 Subject: [PATCH] build(ci): skip test helper contracts --- .solcover.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.solcover.js b/.solcover.js index 59650eec2..4676abcdd 100644 --- a/.solcover.js +++ b/.solcover.js @@ -1,3 +1,10 @@ module.exports = { istanbulReporter: ['html', 'text', 'cobertura'], + // REVIEW: Do we need to skip only those? Do we need to skip anything at all? + skipFiles: [ + '0.4.24/test_helpers', + '0.6.12/mocks', + '0.8.9/test_helpers', + 'common/test_helpers' + ] }