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

Skipped public access tests that are failing e2e tests due to organization policy #2708

Merged
merged 1 commit into from
Jun 7, 2024
Merged
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
3 changes: 3 additions & 0 deletions e2etest/zt_resume_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ func TestResume_LargeGeneric(t *testing.T) {
}

func TestResume_PublicSource_BlobTarget(t *testing.T) {
t.Skip("Public access is sometimes turned off due to organization policy.")
RunScenarios(
t,
// copy only instead of sync because single file sync is not entirely compatible with the test suite
Expand Down Expand Up @@ -103,6 +104,7 @@ func TestResume_PublicSource_BlobTarget(t *testing.T) {
}

func TestResume_PublicSource_ContainerTarget(t *testing.T) {
t.Skip("Public access is sometimes turned off due to organization policy.")
RunScenarios(
t,
eOperation.CopyAndSync()|eOperation.Resume(),
Expand Down Expand Up @@ -134,6 +136,7 @@ func TestResume_PublicSource_ContainerTarget(t *testing.T) {
// The test ensures that at most two log files are generated: one for scanning logs and one for normal logs.

func TestResume_ConsistentLogs_PublicSource_BlobTarget(t *testing.T) {
t.Skip("Public access is sometimes turned off due to organization policy.")
RunScenarios(
t,
eOperation.Copy()|eOperation.Resume(),
Expand Down
Loading