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

Skip all testcontainers #3

Merged
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions extension/observer/dockerobserver/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ func (h *testHost) ReportFatalError(err error) {
var _ component.Host = (*testHost)(nil)

func TestObserverEmitsEndpointsIntegration(t *testing.T) {
t.Skip("See https://github.com/testcontainers/testcontainers-go/issues/1359")
image := "docker.io/library/nginx"
tag := "1.17"

Expand Down Expand Up @@ -82,6 +83,7 @@ func TestObserverEmitsEndpointsIntegration(t *testing.T) {
}

func TestObserverUpdatesEndpointsIntegration(t *testing.T) {
t.Skip("See https://github.com/testcontainers/testcontainers-go/issues/1359")
image := "docker.io/library/nginx"
tag := "1.17"

Expand Down Expand Up @@ -143,6 +145,7 @@ func TestObserverUpdatesEndpointsIntegration(t *testing.T) {
}

func TestObserverRemovesEndpointsIntegration(t *testing.T) {
t.Skip("See https://github.com/testcontainers/testcontainers-go/issues/1359")
image := "docker.io/library/nginx"
tag := "1.17"

Expand Down Expand Up @@ -185,6 +188,7 @@ func TestObserverRemovesEndpointsIntegration(t *testing.T) {
}

func TestObserverExcludesImagesIntegration(t *testing.T) {
t.Skip("See https://github.com/testcontainers/testcontainers-go/issues/1359")
ctx := context.Background()
req := testcontainers.ContainerRequest{
Image: "docker.io/library/nginx:1.17",
Expand Down
1 change: 1 addition & 0 deletions internal/coreinternal/scraperinttest/scraperint.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ func (it *IntegrationTest) Run(t *testing.T) {
}

func (it *IntegrationTest) createNetwork(t *testing.T) testcontainers.Network {
t.Skip("See https://github.com/testcontainers/testcontainers-go/issues/1359")
var errs error

var network testcontainers.Network
Expand Down
1 change: 1 addition & 0 deletions receiver/dockerstatsreceiver/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ func paramsAndContext(t *testing.T) (rcvr.CreateSettings, context.Context, conte
}

func createNginxContainer(ctx context.Context, t *testing.T) testcontainers.Container {
t.Skip("See https://github.com/testcontainers/testcontainers-go/issues/1359")
req := testcontainers.ContainerRequest{
Image: "docker.io/library/nginx:1.17",
ExposedPorts: []string{"80/tcp"},
Expand Down
1 change: 1 addition & 0 deletions receiver/snmpreceiver/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ var (
)

func getContainer(t *testing.T, req testcontainers.ContainerRequest) testcontainers.Container {
t.Skip("See https://github.com/testcontainers/testcontainers-go/issues/1359")
require.NoError(t, req.Validate())
container, err := testcontainers.GenericContainer(
context.Background(),
Expand Down
1 change: 1 addition & 0 deletions receiver/sqlqueryreceiver/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ func TestPostgresIntegrationLogsTrackingWithStorage(t *testing.T) {
}

func startPostgresDbContainer(t *testing.T, externalPort string) testcontainers.Container {
t.Skip("See https://github.com/testcontainers/testcontainers-go/issues/1359")
req := testcontainers.ContainerRequest{
Image: "postgres:9.6.24",
Env: map[string]string{
Expand Down
Loading