-
Notifications
You must be signed in to change notification settings - Fork 510
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
test: fix TTML integration test where ordering was changed by #1364 #1379
test: fix TTML integration test where ordering was changed by #1364 #1379
Conversation
We should turn on integration tests in CI now that they are stable |
It should just be a matter of adding it to CMake, right? |
It's currently skipped in CMake by |
We could also turn them on by default although given the tests take a while to run I think it's convenient to get early feedback from running the unit tests without integration tests. |
I bet changing the default won't seriously increase the job time in CI. I'll do a local test to ballpark it. |
Clean, configure, build, and test w/o integration tests on my workstation at home: Clean, configure, build, and test w/ integration tests on my workstation at home: An increase of 49s Clean, configure, build, and test w/o integration tests in fastest CI configuration: Clean, configure, build, and test w/o integration tests in slowest CI configuration: I would guess that turning it on by default wouldn't delay the last test result by more than 1-3 minutes. |
I can send a pull request to flip this on by default, although the test times on your workstation seem concerning. On my laptop running
runs in 18s |
Ah, this includes a full rebuild of everything including all the 3rd party dependencies. Something still seems odd though, for me the integration tests take about ~5 minutes to run on their own, because the default unit test runner in Python won't parallelize the tests. I guess the difference could come down to single core performance. |
sent #1381 to turn on the integration tests and see how it looks in CI |
No description provided.