Skip to content

Commit

Permalink
Mark known test failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed Aug 27, 2024
1 parent 1108edb commit 072257a
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import org.python.pydev.navigator.elements.PythonProjectSourceFolder;
import org.python.pydev.navigator.elements.PythonSourceFolder;
import org.python.pydev.plugin.nature.PythonNature;
import org.python.pydev.shared_core.SharedCorePlugin;
import org.python.pydev.shared_core.callbacks.ICallback;
import org.python.pydev.shared_core.io.FileUtils;
import org.python.pydev.shared_core.resource_stubs.FileStub;
Expand Down Expand Up @@ -462,6 +463,10 @@ public void testFolderToSourceFolder() throws Exception {
}

public void testFolderToSourceFolder2() throws Exception {
if (SharedCorePlugin.skipKnownFailures()) {
// Needs investigation to know why it's failing.
return;
}
final HashSet<String> pythonPathSet = new HashSet<String>();
pythonPathSet.add(TestDependent.TEST_PYSRC_NAVIGATOR_LOC + "projroot/source");
String source2Folder = TestDependent.TEST_PYSRC_NAVIGATOR_LOC + "projroot/source2";
Expand Down

0 comments on commit 072257a

Please sign in to comment.