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

updated test configs to use specific ports for tzkt instances #1266

Merged
merged 1 commit into from Sep 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 12 additions & 2 deletions tests/e2e/data/config-flextesa-test-sandbox.json
Expand Up @@ -24,12 +24,22 @@
"local": {
"label": "Local Tezos Sandbox",
"protocol": "Psithaca2MLRFYargivpo7YvUr7wUDqyxrdhC5CQq78mRvimz6A",
"rpcUrl": "http://localhost:20010"
"rpcUrl": "http://localhost:20010",
"tzkt": {
"disableAutostartWithSandbox": false,
"postgresqlPort": 5462,
"apiPort": 5030
}
},
"test": {
"label": "Test Tezos Sandbox",
"protocol": "Psithaca2MLRFYargivpo7YvUr7wUDqyxrdhC5CQq78mRvimz6A",
"rpcUrl": "http://localhost:20020"
"rpcUrl": "http://localhost:20020",
"tzkt": {
"disableAutostartWithSandbox": false,
"postgresqlPort": 5472,
"apiPort": 5040
}
}
},
"network": {},
Expand Down
7 changes: 6 additions & 1 deletion tests/e2e/data/config-flextesa-updated-sandbox.json
Expand Up @@ -24,7 +24,12 @@
"local": {
"label": "Local Tezos Sandbox",
"protocol": "Psithaca2MLRFYargivpo7YvUr7wUDqyxrdhC5CQq78mRvimz6A",
"rpcUrl": "http://localhost:20030"
"rpcUrl": "http://localhost:20030",
"tzkt": {
"disableAutostartWithSandbox": false,
"postgresqlPort": 5452,
"apiPort": 5020
}
}
},
"network": {},
Expand Down
Expand Up @@ -38,7 +38,12 @@
"local": {
"label": "Local Ithaca Tezos Sandbox",
"protocol": "PtJakart2xVj7pYXJBXrqHgd82rdkLey5ZeeGwDgPp9rhQUbSqY",
"rpcUrl": "http://localhost:20040"
"rpcUrl": "http://localhost:20040",
"tzkt": {
"disableAutostartWithSandbox": false,
"postgresqlPort": 5442,
"apiPort": 5010
}
}
},
"network": {},
Expand Down
Expand Up @@ -16,8 +16,13 @@
"sandbox": {
"local-tezos-client": {
"label": "Local Tezos Sandbox",
"protocol": "PtJakart2xVj7pYXJBXrqHgd82rdkLey5ZeeGwDgPp9rhQUbSqY",
"rpcUrl": "http://localhost:20660",
"protocol": "Psithaca2MLRFYargivpo7YvUr7wUDqyxrdhC5CQq78mRvimz6A"
"tzkt": {
"disableAutostartWithSandbox": false,
"postgresqlPort": 5432,
"apiPort": 5000
}
}
},
"environment": {
Expand Down