-
Notifications
You must be signed in to change notification settings - Fork 605
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
Conversation
WalkthroughThe changes involve the addition of skip directives in multiple test suites across various files, specifically indicating that certain tests will not be executed due to their reliance on a dataset referred to as the "Zoo Dataset." This modification affects the control flow of the test execution, temporarily disabling specific tests until the dataset issues are resolved. Changes
Possibly related PRs
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Outside diff range and nitpick comments (1)
e2e-pw/src/oss/specs/color-scheme/color-scheme.spec.ts (1)
36-36
: Skipping the test is acceptable temporarily, but ensure there is a plan to fix it.Skipping tests reduces the test coverage and may lead to undetected issues. However, temporarily skipping a failing test to unblock other work is acceptable.
Please create a GitHub issue to track the work required to fix this test. Do you want me to open a GitHub issue for this?
Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
Files selected for processing (7)
- e2e-pw/src/oss/specs/color-scheme/color-scheme.spec.ts (1 hunks)
- e2e-pw/src/oss/specs/display-options/display-options.spec.ts (1 hunks)
- e2e-pw/src/oss/specs/sidebar/sidebar-cifar.spec.ts (1 hunks)
- e2e-pw/src/oss/specs/sidebar/sidebar.spec.ts (1 hunks)
- e2e-pw/src/oss/specs/smoke-tests/quickstart-groups.spec.ts (1 hunks)
- e2e-pw/src/oss/specs/smoke-tests/quickstart.spec.ts (1 hunks)
- e2e-pw/src/oss/specs/smoke-tests/tagger.spec.ts (1 hunks)
Files skipped from review due to trivial changes (5)
- e2e-pw/src/oss/specs/display-options/display-options.spec.ts
- e2e-pw/src/oss/specs/sidebar/sidebar-cifar.spec.ts
- e2e-pw/src/oss/specs/sidebar/sidebar.spec.ts
- e2e-pw/src/oss/specs/smoke-tests/quickstart-groups.spec.ts
- e2e-pw/src/oss/specs/smoke-tests/tagger.spec.ts
Additional context used
Path-based instructions (2)
e2e-pw/src/oss/specs/smoke-tests/quickstart.spec.ts (1)
Pattern
**/*.{ts,tsx}
: Review the Typescript and React code for conformity with best practices in React, Recoil, Graphql, and Typescript. Highlight any deviations.e2e-pw/src/oss/specs/color-scheme/color-scheme.spec.ts (1)
Pattern
**/*.{ts,tsx}
: Review the Typescript and React code for conformity with best practices in React, Recoil, Graphql, and Typescript. Highlight any deviations.
Additional comments not posted (1)
e2e-pw/src/oss/specs/smoke-tests/quickstart.spec.ts (1)
26-27
: LGTM!The code change aligns with the PR objective of skipping e2e tests that use zoo datasets. Using
test.skip()
with a TODO comment is a valid way to temporarily disable the test case until it is fixed.
Because of google drive's rate limiting, zoo datasets are having a problem being downloaded. #4802 adds caching for zoo datasets and models, but until that PR is undrafted and stable, we'll just skip these tests so as to not block PRs.
Summary by CodeRabbit