Integration tests on Windows #432
Unanswered
Bananeweizen
asked this question in
Q&A
Replies: 1 comment
-
Could you enable full stacktraces and post details about the failure? The OS specific artifacts should build under any os, but there might be some issues regarding the interpretation of path names in the test assertions itself. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm still working on making my changes testable locally. Integration tests fail on my Windows machine. If I get it right, all the failing tests are related to building or including OS specific artifacts that are only available on other platforms. Failing tests are:
Should these tests work fine on Windows? If not, I would add something like
assumeTrue("Test uses OS specific launcher artifacts", System.getProperty("os.name").contains("linux"))
to them. However, I'm not really sure of that solution. Since MetaRequirementsTest depends on some MacOS specific stuff I would expect it to fail with the github action during normal builds. Since those builds pass, I must be missing something else, right?Beta Was this translation helpful? Give feedback.
All reactions