Fix tensor_product for SubquoModules#4810
Conversation
tensor_product for SubquoModules
|
Looks to me like the tests for the modules now become too big with these changes. I.e. they do not finish in due time. Is this correct? @aaruni96 ? |
|
@HechtiDerLachs so @aaruni96 is travelling and so may not reply too soon... but say his answer is "yes, too big", what's the plan? |
|
@HechtiDerLachs there are also a ton of doctest failures here (so doctest fix needed?) |
324fc10 to
1606254
Compare
|
@lgoettgens : Can you tell me how to find out on which testset, possibly even which line the timeouts occur? The output of the failing tests seems difficult to decipher for me. If it is even shown here on GH! Sometimes it's just a black screen for some reason... Timeouts did not occur for me locally before; at least not for the Edit: Locally I get |
|
The timeout occurs whenever the running time of the test exceeds the time we have allocated for the test (currently 60 minutes for most tests). So, checking the code for "where does timeout occur" is fruitless. Instead, we can think about whether anything can be done (in your changes) to push the time back under 60 minutes, or raise the timeout limit. Looking at the logs, the best I can tell, is that the tests in |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #4810 +/- ##
==========================================
- Coverage 84.87% 84.87% -0.01%
==========================================
Files 683 683
Lines 91746 91783 +37
==========================================
+ Hits 77872 77898 +26
- Misses 13874 13885 +11
🚀 New features to boost your workflow:
|
|
Good to go from my side. Waiting for approval and merge. @jankoboehm ? |
|
Looks good, thank you very much! Eventually we could perhaps shorten the test still a bit more. |
A hotfix for #4809. Closes #4812.