Skip to content

Commit

Permalink
INITIAL
Browse files Browse the repository at this point in the history
  • Loading branch information
jenisys committed Dec 3, 2017
1 parent 8088e7e commit 556645e
Show file tree
Hide file tree
Showing 39 changed files with 2,980 additions and 0 deletions.
7 changes: 7 additions & 0 deletions python/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[bumpversion]
current_version = 1.0.2
files = setup.py cucumber_tag_expressions/__init__.py .bumpversion.cfg
commit = False
tag = False
allow_dirty = True

43 changes: 43 additions & 0 deletions python/.coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# =========================================================================
# COVERAGE CONFIGURATION FILE: .coveragerc
# =========================================================================
# LANGUAGE: Python
# SEE ALSO:
# * http://nedbatchelder.com/code/coverage/
# * http://nedbatchelder.com/code/coverage/config.html
# =========================================================================

[run]
source = cucumber_tag_expressions
branch = True
parallel = True

[report]
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
noqa

# Don't complain about missing debug-only code:
def __repr__
if self\.debug

# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError

# Don't complain if non-runnable code isn't run:
if 0:
if False:
if __name__ == .__main__.:

ignore_errors = True
show_missing = True

[html]
directory = build/coverage.html

[xml]
output = build/coverage.xml

22 changes: 22 additions & 0 deletions python/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# =============================================================================
# EDITOR CONFIGURATION: http://editorconfig.org
# =============================================================================

root = true

# -- DEFAULT: Unix-style newlines with a newline ending every file.
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.{py,rst,md,txt,ini,cfg}]
indent_style = space
indent_size = 4

[**/makefile]
indent_style = tab

[*.{cmd,bat}]
end_of_line = crlf
18 changes: 18 additions & 0 deletions python/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
*.egg-info
*.log
*.pyc
*.pyo
*$py.class
build/
dist/
downloads/
__pycache__/
__*/
.cache/
.eggs/
.hypothesis/
.idea/
.tox/
.venv*/
.DS_Store
.coverage
Loading

0 comments on commit 556645e

Please sign in to comment.