-
Notifications
You must be signed in to change notification settings - Fork 41
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
[fix][ci] Fix loader compile error & adaptation apache loader/client #194
Conversation
coderzc
commented
Nov 4, 2022
•
edited
Loading
edited
- Fix loader compile error
- Adaptation apache loader/client
- Fix and improve test (Port conflict)
- Improve log format
<groupId>com.baidu.hugegraph</groupId> | ||
<groupId>org.apache.hugegraph</groupId> | ||
<artifactId>hugegraph-client</artifactId> | ||
<version>2.0.1</version> | ||
<version>1.0.0</version> |
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.
no, we can't use it now (we could only use commons)
and we also should add a maven repo URL in setting.xml
in CI if we want to use it
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.
we need install the client.jar
in CI by ourselves
another way to solve this problem is that we change the however, we need handle the latest version in the last :) |
3820676
to
ad06bed
Compare
22e5190
to
e3b0fc5
Compare
Codecov Report
@@ Coverage Diff @@
## master #194 +/- ##
============================================
- Coverage 86.12% 86.11% -0.02%
+ Complexity 3212 3210 -2
============================================
Files 341 341
Lines 12200 12197 -3
Branches 1085 1085
============================================
- Hits 10507 10503 -4
+ Misses 1171 1170 -1
- Partials 522 524 +2
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
private static HugeClient CLIENT = null; | ||
|
||
protected static void clearAll() { | ||
client().graphs().clearGraph(GRAPH, "I'm sure to delete all data"); | ||
} | ||
|
||
@BeforeClass | ||
public static void step() throws ClassNotFoundException { |
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.
step() => setup()?
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.
Ok.