-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from capitalone/dev
Release 2021.12.1
- Loading branch information
Showing
9 changed files
with
147 additions
and
83 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 |
---|---|---|
|
@@ -108,3 +108,6 @@ venv.bak/ | |
.DS_Store | ||
.idea/ | ||
pip-wheel-metadata/ | ||
|
||
# edgetest | ||
.edgetest |
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
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 |
---|---|---|
|
@@ -10,78 +10,94 @@ maintainer = Akshay Gupta | |
maintainer_email = [email protected] | ||
url = https://github.com/capitalone/edgetest-conda | ||
python_requires = | ||
>=3.7.0 | ||
>=3.7.0 | ||
project_urls = | ||
Documentation = https://capitalone.github.io/edgetest-conda | ||
Bug Tracker = https://github.com/capitalone/edgetest-conda/issues | ||
Source Code = https://github.com/capitalone/edgetest-conda | ||
Documentation = https://capitalone.github.io/edgetest-conda | ||
Bug Tracker = https://github.com/capitalone/edgetest-conda/issues | ||
Source Code = https://github.com/capitalone/edgetest-conda | ||
classifiers = | ||
Intended Audience :: Developers | ||
Natural Language :: English | ||
Operating System :: OS Independent | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3 :: Only | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Intended Audience :: Developers | ||
Natural Language :: English | ||
Operating System :: OS Independent | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3 :: Only | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
|
||
[options] | ||
zip_safe = False | ||
include_package_data = True | ||
packages = find: | ||
install_requires = | ||
edgetest | ||
edgetest | ||
|
||
[options.extras_require] | ||
docs = | ||
furo | ||
sphinx | ||
sphinx-copybutton | ||
sphinx-tabs | ||
furo | ||
sphinx | ||
sphinx-copybutton | ||
sphinx-tabs | ||
tests = | ||
coverage | ||
flake8 | ||
mypy | ||
pydocstyle | ||
pytest | ||
pytest-cov | ||
coverage | ||
flake8 | ||
mypy | ||
pydocstyle | ||
pytest | ||
pytest-cov | ||
qa = | ||
black | ||
isort | ||
pip-tools | ||
pre-commit | ||
pylint | ||
black | ||
isort | ||
pip-tools | ||
pre-commit | ||
pylint | ||
build = | ||
build | ||
twine | ||
wheel | ||
bumpver | ||
build | ||
twine | ||
wheel | ||
bumpver | ||
dev = | ||
%(tests)s | ||
%(docs)s | ||
%(qa)s | ||
%(build)s | ||
coverage | ||
flake8 | ||
mypy | ||
pydocstyle | ||
pytest | ||
pytest-cov | ||
furo | ||
sphinx | ||
sphinx-copybutton | ||
sphinx-tabs | ||
black | ||
isort | ||
pip-tools | ||
pre-commit | ||
pylint | ||
build | ||
twine | ||
wheel | ||
bumpver | ||
|
||
[options.entry_points] | ||
edgetest = | ||
conda = edgetest_conda.plugin | ||
conda = edgetest_conda.plugin | ||
|
||
[bumpver] | ||
current_version = "2021.12.0" | ||
current_version = "2021.12.1" | ||
version_pattern = "YYYY.MM.INC0" | ||
commit_message = "Bump {old_version} to {new_version}" | ||
commit = True | ||
|
||
[bumpver:file_patterns] | ||
docs/source/conf.py = | ||
version = "{version}" | ||
setup.cfg = | ||
current_version = "{version}" | ||
edgetest_conda/__init__.py = | ||
__version__ = "{version}" | ||
docs/source/conf.py = | ||
version = "{version}" | ||
setup.cfg = | ||
current_version = "{version}" | ||
edgetest_conda/__init__.py = | ||
__version__ = "{version}" | ||
|
||
[aliases] | ||
lint=pylint | ||
lint = pylint | ||
|
||
[bdist_wheel] | ||
python-tag = py3 | ||
|
@@ -93,11 +109,11 @@ max-complexity = 17 | |
ignore = E203, W503 | ||
|
||
[isort] | ||
multi_line_output=3 | ||
include_trailing_comma=True | ||
force_grid_wrap=0 | ||
use_parentheses=True | ||
line_length=88 | ||
multi_line_output = 3 | ||
include_trailing_comma = True | ||
force_grid_wrap = 0 | ||
use_parentheses = True | ||
line_length = 88 | ||
|
||
[mypy] | ||
python_version = 3.7 | ||
|
@@ -110,7 +126,12 @@ allow_redefinition = True | |
pylint_minimum_score = 9.5 | ||
|
||
[tool:pytest] | ||
markers = | ||
unit: mark unit tests that do not require external interfaces and use mocking | ||
integration: mark test that interact with an external system | ||
markers = | ||
unit: mark unit tests that do not require external interfaces and use mocking | ||
integration: mark test that interact with an external system | ||
addopts = --verbose | ||
|
||
[edgetest] | ||
extras = | ||
tests | ||
|
Oops, something went wrong.