-
Notifications
You must be signed in to change notification settings - Fork 3
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
Added CargoITCase
#19
base: master
Are you sure you want to change the base?
Conversation
@g4s8 here is the IT, it's failing now as cargo fails to parse response from
|
@olenagerasimova I have another stack-trace here:
it seems |
@g4s8 hm, I do not see how is that possible and why. Logs from the actions are the same as my. What is the request paths? You should be able to see it in logs |
@g4s8 any update? |
@g4s8 did you take a look? Any updates? |
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.
@olenagerasimova sorry for delay, please check some comments
|
||
@BeforeEach | ||
void init() throws IOException { | ||
final int port = new RandomFreePort().get(); |
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.
You can just get it from final int port = this.server.start()
@@ -20,6 +21,7 @@ | |||
class CargoSliceTest { | |||
|
|||
@Test | |||
@Disabled |
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.
Why this test is now disabled?
@g4s8 the test is not working as cargo cannot parse the response from git-adapter while performing
do you have any ideas why? |
@olenagerasimova needs more details here. I'm not sure if |
@g4s8 by default cargo uses built-in git library, not system git executable. I've installed git and made cargo use it instead of built-in git library, also set
please, check actions for details. |
@olenagerasimova working on it |
Part of #8
Added
GitSlice
to cargo main entry point, integration test and test logging config.