Skip to content

Commit

Permalink
Skip all testcontainers (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
djaglowski authored Jul 12, 2023
1 parent 220d876 commit 77b13a7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 0 deletions.
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

0 comments on commit 77b13a7

Please sign in to comment.