Releases: getgauge/gauge-python
Releases · getgauge/gauge-python
Gauge-Python 0.2.3
#14 - Gauge API failed to start - Connection issue: GAUGE_INTERNAL_PORT
Gauge-Python 0.2.2
- Shows suggestion for validation errors.
Suggestions for fixing `Duplicate step implementation` errors.
Multiple implementations found for `Vowels in English language are <arg>.`
step_impl/step_impl.py:9
@step("Vowels in English language are <vowels>.")
def assert_default_vowels(given_vowels):
...
step_impl/step_impl.py:20
@step("Vowels in English language are <vowels>.")
def assert_default_vowels1(given_vowels):
...
Add the following missing implementations to fix `Step implementation not found` errors.
@step("Almost all words have vowels <table>")
def almost_all_words_have_vowels(table):
assert False, "Add implementation code"
Gauge-Python 0.2.1
Bug Fixes
- #11 - @before_step, @after_step execution hooks do not work (gauge 0.9.0, gauge-python 0.2.0)
Gauge-Python 0.2.0
- Removing support for
python3.1
andpython3.2
. - Updating
proto2
toproto3
.
Gauge-Python 0.1.7
- Adding
STEP_IMPL_DIR
property to change defaultstep_impl
dir. - Improving console reporting.
Gauge-Python 0.1.6
Gauge-Python 0.1.5
#7 - Provide a mechanism where users can specify the python version which will be used to run the specs
Gauge-Python 0.1.4
- Added python 2 support
- Enhanced refactoring
- Setting working dir to gauge project root during execution
Gauge-Python 0.1.3
- Adding python3 version compatibility check.
- Updating step implementation parsing logic.
- Adding
multiple implementations found for a step
error type to validation errors.
Gauge-Python 0.1.2
Enhancements
- Adding requirements.txt file with
getgauge
dependency while initializing a gauge project
Bug Fixes
- Using
PYTHONUNBUFFERED
Instead of -u flag for unbuffered output.
Removed
python 2.x
support