From 6b361310c75ad719d93294dfaca8e66f3e97ba2f Mon Sep 17 00:00:00 2001 From: Arnaud Date: Fri, 23 May 2025 11:41:03 +0200 Subject: [PATCH] Enable logs to debug on CI --- tests/integration/testmarketplace.nim | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/tests/integration/testmarketplace.nim b/tests/integration/testmarketplace.nim index d8466240..e6118614 100644 --- a/tests/integration/testmarketplace.nim +++ b/tests/integration/testmarketplace.nim @@ -225,16 +225,20 @@ marketplacesuite "Marketplace payouts": NodeConfigs( # Uncomment to start Hardhat automatically, typically so logs can be inspected locally hardhat: HardhatConfig.none, - clients: CodexConfigs.init(nodes = 1) - # .debug() # uncomment to enable console log output.debug() - # .withLogFile() # uncomment to output log file to tests/integration/logs/ //_.log - # .withLogTopics("node", "erasure") - .some, - providers: CodexConfigs.init(nodes = 1) - # .debug() # uncomment to enable console log output - # .withLogFile() # uncomment to output log file to tests/integration/logs/ //_.log - # .withLogTopics("node", "marketplace", "sales", "reservations", "node", "statemachine") - .some, + clients: CodexConfigs + .init(nodes = 1) + # .debug() # uncomment to enable console log output.debug() + .withLogFile() + # uncomment to output log file to tests/integration/logs/ //_.log + .withLogTopics("node", "erasure").some, + providers: CodexConfigs + .init(nodes = 1) + # .debug() # uncomment to enable console log output + .withLogFile() + # uncomment to output log file to tests/integration/logs/ //_.log + .withLogTopics( + "node", "marketplace", "sales", "reservations", "node", "statemachine" + ).some, ): let duration = 20.periods let expiry = 10.periods