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 e2e tests that use zoo datasets #4804

Merged
merged 1 commit into from
Sep 16, 2024
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
1 change: 1 addition & 0 deletions e2e-pw/src/oss/specs/color-scheme/color-scheme.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const test = base.extend<{
const datasetName = getUniqueDatasetNameWithPrefix("quickstart");

test.describe("color scheme basic functionality with quickstart", () => {
test.skip(true, "THIS TEST USES ZOO DATASET. TODO: FIX IT");
test.beforeAll(async ({ fiftyoneLoader }) => {
await fiftyoneLoader.loadZooDataset("quickstart", datasetName, {
max_samples: 5,
Expand Down
2 changes: 2 additions & 0 deletions e2e-pw/src/oss/specs/display-options/display-options.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ const test = base.extend<{
});

test.describe("Display Options", () => {
test.skip(true, "THIS TEST USES ZOO DATASET. TODO: FIX IT");

const datasetName = getUniqueDatasetNameWithPrefix("quickstart-groups");

test.beforeAll(async ({ fiftyoneLoader }) => {
Expand Down
2 changes: 2 additions & 0 deletions e2e-pw/src/oss/specs/sidebar/sidebar-cifar.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ const test = base.extend<{ sidebar: SidebarPom; grid: GridPom }>({
});

test.describe("classification-sidebar-filter-visibility", () => {
test.skip(true, "THIS TEST USES ZOO DATASET. TODO: FIX IT");

test.beforeAll(async ({ fiftyoneLoader }) => {
await fiftyoneLoader.loadZooDataset("cifar10", datasetName, {
max_samples: 5,
Expand Down
2 changes: 2 additions & 0 deletions e2e-pw/src/oss/specs/sidebar/sidebar.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ const test = base.extend<{ sidebar: SidebarPom; grid: GridPom }>({
});

test.describe("sidebar-filter-visibility", () => {
test.skip(true, "THIS TEST USES ZOO DATASET. TODO: FIX IT");

test.beforeAll(async ({ fiftyoneLoader }) => {
await fiftyoneLoader.loadZooDataset("quickstart", datasetName, {
max_samples: 5,
Expand Down
2 changes: 2 additions & 0 deletions e2e-pw/src/oss/specs/smoke-tests/quickstart-groups.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ const test = base.extend<{
});

test.describe("quickstart-groups", () => {
test.skip(true, "THIS TEST USES ZOO DATASET. TODO: FIX IT");

test.beforeAll(async ({ fiftyoneLoader }) => {
await fiftyoneLoader.loadZooDataset("quickstart-groups", datasetName, {
max_samples: 12,
Expand Down
2 changes: 2 additions & 0 deletions e2e-pw/src/oss/specs/smoke-tests/quickstart.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ const test = base.extend<{
});

test.beforeAll(async ({ fiftyoneLoader }) => {
test.skip(true, "THIS TEST USES ZOO DATASET. TODO: FIX IT");

await fiftyoneLoader.loadZooDataset("quickstart", datasetName, {
max_samples: 5,
});
Expand Down
2 changes: 2 additions & 0 deletions e2e-pw/src/oss/specs/smoke-tests/tagger.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ const test = base.extend<{
});

test.describe("tag", () => {
test.skip(true, "THIS TEST USES ZOO DATASET. TODO: FIX IT");

test.beforeAll(async ({ fiftyoneLoader }) => {
await fiftyoneLoader.loadZooDataset("quickstart", datasetName, {
max_samples: 5,
Expand Down
Loading