Create io.cucumber.eclipse.python bundle #571
Merged
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.
This pull request introduces a new Eclipse bundle,
io.cucumber.eclipse.python, which adds first-class support for running Cucumber feature files using the Python Behave framework within Eclipse. It includes the full implementation of the plugin, integration with the Eclipse launch/debug framework, user documentation, and a working example project. The changes are grouped into three main themes: new bundle creation, example project, and integration/documentation.Key changes:
1. New Eclipse Bundle: Python Behave Launcher
io.cucumber.eclipse.pythonwith full Eclipse PDE setup (.project,.classpath,.settings/,.gitignore). [1] [2] [3] [4] [5]MANIFEST.MF(bundle metadata, dependencies, OSGi services),build.properties, and main plugin entry points inplugin.xml(launch configuration type, UI tabs, icons, preference page, document setup, etc.). [1] [2] [3]IMPLEMENTATION.md) and user documentation (README.md) describing features, usage, requirements, and design decisions. [1] [2]2. Example Python Behave Project
examples/python-calculatorfolder containing a sample Behave project: feature file (calculator.feature), step definitions (calculator_steps.py),.gitignore, Eclipse project file, and a detailed README. [1] [2] [3] [4] [5].projectfile for the parentexamplesfolder for Eclipse compatibility.3. Integration with Eclipse Feature and Build
io.cucumber.eclipse.feature/feature.xml).These changes collectively provide seamless support for running Cucumber/Behave scenarios in Python projects from within Eclipse, mirroring the experience previously available only for Java.
Closes #570
Closes #563