-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide basic support for #406 to be solved externally.
Update to newest python (3.7) and packages (update some package versions). Synchronize latest subrepo changes from "cucucumber/tag-expressions".
- Loading branch information
Showing
11 changed files
with
68 additions
and
32 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,6 @@ __*/ | |
.venv*/ | ||
.DS_Store | ||
.coverage | ||
.deps | ||
.tested | ||
Pipfile.lock |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
cucumber/tag-expressions-python | ||
cucumber/tag-expressions-python.git |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,19 @@ | ||
[[source]] | ||
|
||
url = "https://pypi.python.org/simple" | ||
verify_ssl = true | ||
name = "pypi" | ||
|
||
|
||
[dev-packages] | ||
|
||
|
||
|
||
[packages] | ||
|
||
pytest = ">=3.0" | ||
pytest-html = ">=1.16" | ||
tox = ">=2.9.1" | ||
pytest = ">=3.2" | ||
pytest-html = ">=1.19" | ||
tox = ">=2.9" | ||
coverage = ">=4.2" | ||
"enum34" = "*" | ||
invoke = ">=0.21.0" | ||
"path.py" = ">=10.1" | ||
pathlib = "*" | ||
"backports.shutil_which" = "*" | ||
pycmd = "*" | ||
six = ">=1.11.0" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
# -*- coding: UTF-8 -*- | ||
""" | ||
Python implementation of `cucumber tag-expressions`_. | ||
Tag-expressions are used in cucumber, behave and other BDD frameworks | ||
to select features, scenarios, etc. in `Gherkin`_ files. | ||
Theses selected items are normally included in a test run. | ||
.. seealso:: https://docs.cucumber.io/cucumber/tag-expressions/ | ||
.. _`cucumber tag-expressions`: https://docs.cucumber.io/cucumber/tag-expressions/ | ||
.. _`Gherkin`: https://docs.cucumber.io/gherkin/reference/ | ||
.. _`behave: Gherkin`: https://behave.readthedocs.io/en/latest/philosophy.html#the-gherkin-language | ||
""" | ||
|
||
from __future__ import absolute_import | ||
from .parser import parse, TagExpressionParser, TagExpressionError | ||
|
||
__version__ = "1.0.2" | ||
__version__ = "1.1.1" |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,7 @@ run: | |
echo: true | ||
pty: true | ||
|
||
|
||
clean_all: | ||
extra_directories: | ||
- .pytest_cache | ||
- .hypothesis |
This file contains 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
This file contains 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
This file contains 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
This file contains 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