Fix Java Language tests#21
Open
echebbi wants to merge 2 commits into
Open
Conversation
As a remember the issue was that when testing dynamic loading of Java Runners runtime errors was occuring randomly. In the end the issue was that the Eclipse project was not properly imported. Updating ImportableProject class solved the issue.
ce5aff5 to
af85d0e
Compare
Owner
Author
|
Tests pass successfully in my local system but fail in Travis CI. It seems that Travis launches the runtime Eclipse IDE in read-only mode and prevent the import of the new project. Because of this issue the branch cannot be merged right now, so I'll wait until the problem is fixed. |
d1a3cd2 to
293c85f
Compare
Owner
Author
|
After further investigation it seems that the issue is caused by the JDT. Indeed, on some computers The code expects absolute classpath and then fails when they are relative. I did not manage to find what causes this difference yet. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
As a remember the issue was that when testing dynamic loading of Java Runners runtime errors was occuring randomly.
In the end the issue was that the Eclipse project was not properly imported. Updating ImportableProject class solved the issue.