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

chore(cicd): remove CI pipeline external infra dependencies #2403

Merged
merged 25 commits into from
Jun 5, 2023
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
Prev Previous commit
Next Next commit
more wait for services
  • Loading branch information
schoren committed Jun 2, 2023
commit 4f6c61804129309db4663935b4230848e532240c
3 changes: 2 additions & 1 deletion testing/cli-e2etest/environment/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ func (m *internalManager) Start(t *testing.T) {
helpers.RequireExitCodeEqual(t, result, 0)

// give the system 1s to get everything ready
// time.Sleep(1 * time.Second)
time.Sleep(500 * time.Millisecond)

// wait until tracetest port is ready
Expand All @@ -144,6 +143,8 @@ func (m *internalManager) Start(t *testing.T) {
if m.pokeshopEnabled {
// wait for pokeshp services
waitForPort("8081")

time.Sleep(500 * time.Millisecond)
waitForPort("8082")
}

Expand Down