-
Notifications
You must be signed in to change notification settings - Fork 130
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
github actions CI running tests twice #599
Comments
I just ran some local tests with your repository and cannot tell why 8 tests get reported.. catkin_test_results lists
And this file only lists 4 tests: <?xml version="1.0" encoding="UTF-8"?>
<testsuites tests="4" failures="0" disabled="0" errors="0" timestamp="2021-01-29T07:51:35" time="0" name="AllTests">
<testsuite name="TestSuite" tests="4" failures="0" disabled="0" errors="0" time="0">
<testcase name="testHello" status="run" time="0" classname="TestSuite" />
<testcase name="testSucceed" status="run" time="0" classname="TestSuite" />
<testcase name="testAssert" status="run" time="0" classname="TestSuite" />
<testcase name="testFloat" status="run" time="0" classname="TestSuite" />
</testsuite>
</testsuites> |
If I feed this into |
This seems to be a regression of ros/catkin#1033. |
Hello,
We recently setup our a github action to build and test our ros code. However it looks like the tests are being run twice. When
Starting function 'run_target_test'
is run it showsSummary: 8 tests, 0 errors, 0 failures, 0 skipped
8 tests being run but we only have 4 tests.Our test are here
https://github.com/StanfordMSL/msl_quad/blob/test-setup/mslquad/test/test_hello.cpp
they are just sample tests to work out all the CI setup. When these tests are run locally (with both
catkin_make
andcatkin run_tests
there are only 4 tests.I'm not sure if this is a CI setup issue on our end of if we are running the tests incorrectly. Any help would be appreciated!
The text was updated successfully, but these errors were encountered: