-
Notifications
You must be signed in to change notification settings - Fork 454
[GAIA CI Tests] Unify gremlin ci tests under different storages #2504
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
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #2504 +/- ##
===========================================
- Coverage 72.62% 39.87% -32.76%
===========================================
Files 88 88
Lines 9816 9816
===========================================
- Hits 7129 3914 -3215
- Misses 2687 5902 +3215 see 48 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
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.
Can we provide a table of test cases that are removed due to at least one store does not support the cases, including information includes:
test_cases, unsupported store [vineyard|groot|...], why it is not supported
Test Cases | Unsupported Storages | Reasons |
---|---|---|
g.V().has("p", P.neq("v")) g.V().has("blah") g.V().has("circumference") |
Vineyard & Groot | Ir core converts a non-existing property name to a magic number which is negative, runtime will throw exceptions if the given property id is negative. |
g.E(XX) | Vineyard & Groot | Fetching edge by its inner id is unsupported in vineyard or groot. |
…pe into ir_integrate_ci_tests
…pe into ir_integrate_ci_tests
…pe into ir_integrate_ci_tests
e2e2ada
to
ad0eb8a
Compare
This reverts commit ea686d3.
.github/workflows/gss.yml
Outdated
@@ -76,6 +76,7 @@ jobs: | |||
run: | | |||
source ${HOME}/.graphscope_env | |||
cd interactive_engine/groot-server | |||
sleep 1000000 |
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.
Maybe need to be removed?
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.
just add it for debug, have removed it.
What do these changes do?
src/test/java/com/alibaba/graphscope/integration
tosrc/main/java/com/alibaba/graphscope/gremlin/integration/suite
, to be imported by other modules.Related issue number
Fixes #2510