Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Commit

Permalink
Disable flaky storage tests without panicking
Browse files Browse the repository at this point in the history
  • Loading branch information
viovanov committed Sep 25, 2020
1 parent 6c2d4fc commit 73f7b1a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions integration/util/tlogs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,13 @@ import (
)

var _ = Describe("when testing tail-logs subcommand", func() {
Skip("Tests are flaky in the Concourse release pipeline")

Context("subcommand must be working", func() {
podName := "test-pod-bar-foo"
parentCName := "fake-nats"
sidecarCName := "logs"

It("when tailing and only one file exists", func() {
Skip("Tests are flaky in the Concourse release pipeline")
scriptCreateDirs := `mkdir -p /var/vcap/sys/log/nats;
touch /var/vcap/sys/log/nats/nats.log;
while true;
Expand All @@ -44,6 +43,7 @@ var _ = Describe("when testing tail-logs subcommand", func() {
})

It("when tailing and more than one file exists", func() {
Skip("Tests are flaky in the Concourse release pipeline")
scriptCreateDirs := `mkdir -p /var/vcap/sys/log/nats;
mkdir -p /var/vcap/sys/log/doppler;
touch /var/vcap/sys/log/nats/nats.log;
Expand All @@ -70,6 +70,7 @@ var _ = Describe("when testing tail-logs subcommand", func() {
})

It("when tailing and an unsupported files exist", func() {
Skip("Tests are flaky in the Concourse release pipeline")
scriptCreateDirs := `mkdir -p /var/vcap/sys/log/nats;
touch /var/vcap/sys/log/nats/nats.log;
touch /var/vcap/sys/log/nats/nats.err
Expand All @@ -92,6 +93,7 @@ var _ = Describe("when testing tail-logs subcommand", func() {
})

It("when tailing and no file exist", func() {
Skip("Tests are flaky in the Concourse release pipeline")
scriptCreateDirs := `
mkdir -p /var/vcap/sys/log
while true;
Expand All @@ -109,6 +111,7 @@ var _ = Describe("when testing tail-logs subcommand", func() {
})

It("calls logrotate at the configured interval", func() {
Skip("Tests are flaky in the Concourse release pipeline")
scriptCreateDirs := `mkdir -p /var/vcap/sys/log/nats;
touch /var/vcap/sys/log/nats/nats.log;
while true;
Expand Down

0 comments on commit 73f7b1a

Please sign in to comment.