Skip to content

Commit 6e85521

Browse files
Christoph Läubrichlaeubi
authored andcommitted
Do not use fallback for detecting a phython project
Fix #585
1 parent d4405af commit 6e85521

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

io.cucumber.eclipse.python/src/io/cucumber/eclipse/python/launching/BehaveProcessLauncher.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -194,11 +194,6 @@ public static boolean isBehaveProject(IResource resource) {
194194
// Ignore and try other checks
195195
}
196196

197-
// Check for Python-related files/folders as fallback
198-
return project.getFile("requirements.txt").exists() ||
199-
project.getFile("setup.py").exists() ||
200-
project.getFile("pyproject.toml").exists() ||
201-
project.getFolder("venv").exists() ||
202-
project.getFolder(".venv").exists();
197+
return false;
203198
}
204199
}

0 commit comments

Comments
 (0)