Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update ports #1848

Merged
merged 3 commits into from
Mar 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 14 additions & 13 deletions integration/constants.go
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
package integration

// Tracks the start ports handed out to different tests, in a bid to minimise conflicts.
// Note: the max should not exceed 30000 because the OS can use those ports and we'll get conflicts
const (
StartPortEth2NetworkTests = 10000
StartPortTenscanUnitTest = 12000
StartPortNodeRunnerTest = 14000
StartPortTenGatewayUnitTest = 16000
StartPortSimulationGethInMem = 18000
StartPortSimulationInMem = 22000
StartPortSimulationFullNetwork = 26000
StartPortNetworkTests = 28000
StartPortSmartContractTests = 30000
StartPortContractDeployerTest1 = 34000
StartPortContractDeployerTest2 = 35000
StartPortWalletExtensionUnitTest = 38000
StartPortFaucetUnitTest = 42000
StartPortFaucetHTTPUnitTest = 48000
StartPortTenscanUnitTest = 11000
StartPortNodeRunnerTest = 12000
StartPortTenGatewayUnitTest = 13000
StartPortSimulationGethInMem = 14000
StartPortSimulationInMem = 15000
StartPortSimulationFullNetwork = 16000
StartPortNetworkTests = 17000
StartPortSmartContractTests = 18000
StartPortContractDeployerTest1 = 19000
StartPortContractDeployerTest2 = 20000
StartPortWalletExtensionUnitTest = 21000
StartPortFaucetUnitTest = 22000
StartPortFaucetHTTPUnitTest = 23000

DefaultGethWSPortOffset = 100
DefaultGethAUTHPortOffset = 200
Expand Down
Loading