mirror of
https://github.com/status-im/nim-codex.git
synced 2025-01-31 21:16:09 +00:00
undo changes done for CI debugging
This commit is contained in:
parent
75567af654
commit
48de86b64d
@ -294,14 +294,14 @@ proc buildCommand(
|
|||||||
raiseTestManagerError "bad file name, testFile: " & test.config.testFile, parent
|
raiseTestManagerError "bad file name, testFile: " & test.config.testFile, parent
|
||||||
|
|
||||||
withLock(test.manager.codexPortLock):
|
withLock(test.manager.codexPortLock):
|
||||||
# Increase the port by 20 to allow each test to run 20 codex nodes
|
# Increase the port by 100 to allow each test to run 100 codex nodes
|
||||||
# (clients, SPs, validators) giving a good chance the port will be free. We
|
# (clients, SPs, validators) giving a good chance the port will be free. We
|
||||||
# cannot rely on `nextFreePort` in multinodes entirely as there could be a
|
# cannot rely on `nextFreePort` in multinodes entirely as there could be a
|
||||||
# concurrency issue where the port is determined free in mulitiple tests and
|
# concurrency issue where the port is determined free in mulitiple tests and
|
||||||
# then there is a clash during the run.
|
# then there is a clash during the run.
|
||||||
let apiPort = await nextFreePort(test.manager.lastCodexApiPort + 20)
|
let apiPort = await nextFreePort(test.manager.lastCodexApiPort + 100)
|
||||||
test.manager.lastCodexApiPort = apiPort
|
test.manager.lastCodexApiPort = apiPort
|
||||||
let discPort = await nextFreePort(test.manager.lastCodexDiscPort + 20)
|
let discPort = await nextFreePort(test.manager.lastCodexDiscPort + 100)
|
||||||
test.manager.lastCodexDiscPort = discPort
|
test.manager.lastCodexDiscPort = discPort
|
||||||
|
|
||||||
withLock(test.manager.hardhatPortLock):
|
withLock(test.manager.hardhatPortLock):
|
||||||
|
@ -16,7 +16,7 @@ const TestConfigs =
|
|||||||
IntegrationTestConfig.init("./integration/testmarketplace", startHardhat = true),
|
IntegrationTestConfig.init("./integration/testmarketplace", startHardhat = true),
|
||||||
IntegrationTestConfig.init("./integration/testproofs", startHardhat = true),
|
IntegrationTestConfig.init("./integration/testproofs", startHardhat = true),
|
||||||
IntegrationTestConfig.init("./integration/testvalidator", startHardhat = true),
|
IntegrationTestConfig.init("./integration/testvalidator", startHardhat = true),
|
||||||
# IntegrationTestConfig.init("./integration/testecbug", startHardhat = true),
|
IntegrationTestConfig.init("./integration/testecbug", startHardhat = true),
|
||||||
]
|
]
|
||||||
|
|
||||||
# Echoes stderr if there's a test failure (eg test failed, compilation error)
|
# Echoes stderr if there's a test failure (eg test failed, compilation error)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user