Invalid escape sequences in tests
When running the python tests, warnings about invalid escape sequences, as in #3316 do appear all over the place.
SyntaxWarning: invalid escape sequence
In order to fix them, one can prefix the corresponding string with an r to have it as a raw string.
Probably this corresponds with the used Python version, which is currently under Fedora 40 Python 3.12.2.
Huh, did we just fix a few of these in #3322 and miss the rest?
I am pretty sure that it corresponds to the change to out-of-source build #3271, I am really sorry for missing that part.
So as only the ones in problems was reported I only fixed them there.
Now while working with the test I realized (especially after also seeing the invalid escape) that unfortunately we dropped all the integration python tests with this change. (Due to not updated, copied python tests as in #3387 and the corresponding issue.
When one does look up the commit history and the corresponding unit test one can see that here around 3800 tests where run and then in this run only 2700.
Oops! That certainly does make things run faster though :)
For reference e.g. in the log file from this run one can see all the additional missing escape sequences.