hack: have integration-cli use gotestsum codepath#39911
hack: have integration-cli use gotestsum codepath#39911cpuguy83 merged 2 commits intomoby:masterfrom
Conversation
|
@thaJeztah it's because the integration-cli is running one half at a time, so two runs total. If I can get rid of |
|
@thaJeztah PTAL |
8a2a607 to
f95f468
Compare
|
@cpuguy83 @thaJeztah Fixed the issues. Including the test names: there is no more master test named |
thaJeztah
left a comment
There was a problem hiding this comment.
Thanks! Left some comments, but not a blocker per-se; we can iterate over this and improve.
I also noticed that the integration tests show up as amd64.integration in the top level;
Whereas the integration-cli ones are nested under amd64. We should have a look why, and either group all under amd64, or have both shown as amd64.integration and amd64.integration-cli.
I did a quick comparison between the XML for both; Not sure what's causing the difference in grouping; perhaps because integration has three elements (amd64.integration.<name>)? Or could it be because of the hyphen in integration-cli ?
amd64-integration-cli-junit-report.xml:
<testsuite tests="1219" failures="0" time="4507.577000" name="amd64.integration-cli">
<testcase classname="amd64.integration-cli" name="TestDockerSuite/DockerSuite/TestAPIClientVersionOldNotSupported" time="0.010000"></testcase>amd64-integration-build-junit-report.xml
<testsuite tests="32" failures="0" time="169.590000" name="amd64.integration.build">
<testcase classname="amd64.integration.build" name="TestCgroupNamespacesBuild" time="5.100000"></testcase>
integration-cli/check_test.go
Outdated
There was a problem hiding this comment.
I'm only refactoring, but sure I don't know what happened there.
Signed-off-by: Tibor Vass <tibor@docker.com>
Signed-off-by: Tibor Vass <tibor@docker.com>
f95f468 to
f1c1cd4
Compare
|
@thaJeztah rebased and fixed duplicate suite name issue. |
|
Oh my |
|
@cpuguy83 yeah, we're investigating that. i think the node that this PR ran on had a process from an old job that was still using resources. |
|
Failure in windows RS5 is unrelated: |
|
@thaJeztah @cpuguy83 PTAL |





Signed-off-by: Tibor Vass tibor@docker.com
This also removes the master test named
Test, replaced by one test per suite. Review last commit for that.