Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Mar 27, 2021
2 parents d7adecc + 7fe4ab8 commit 4fbbab1
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .coveragerc
@@ -1,5 +1,7 @@
[run]
omit = .tox/*
omit =
# leading `*/` for pytest-dev/pytest-cov#456
*/.tox/*

[report]
show_missing = True
15 changes: 15 additions & 0 deletions .editorconfig
@@ -0,0 +1,15 @@
root = true

[*]
charset = utf-8
indent_style = tab
indent_size = 4
insert_final_newline = true
end_of_line = lf

[*.py]
indent_style = space

[*.{yml,yaml}]
indent_style = space
indent_size = 2
2 changes: 0 additions & 2 deletions pytest.ini
Expand Up @@ -6,5 +6,3 @@ doctest_optionflags=ALLOW_UNICODE ELLIPSIS
# workaround for warning pytest-dev/pytest#6178
junit_family=xunit2
filterwarnings=
# https://github.com/pytest-dev/pytest/issues/6928
ignore:direct construction of .*Item has been deprecated:DeprecationWarning
14 changes: 9 additions & 5 deletions setup.cfg
Expand Up @@ -32,13 +32,17 @@ exclude =
[options.extras_require]
testing =
# upstream
pytest >= 3.5, !=3.7.3
pytest-checkdocs >= 1.2.3
pytest >= 4.6
pytest-checkdocs >= 2.4
pytest-flake8
pytest-black >= 0.3.7; python_implementation != "PyPy"
# python_implementation: workaround for jaraco/skeleton#22
# python_version: workaround for python/typed_ast#156
pytest-black >= 0.3.7; python_implementation != "PyPy" and python_version < "3.10"
pytest-cov
pytest-mypy; python_implementation != "PyPy"
pytest-enabler
# python_implementation: workaround for jaraco/skeleton#22
# python_version: workaround for python/typed_ast#156
pytest-mypy; python_implementation != "PyPy" and python_version < "3.10"
pytest-enabler >= 1.0.1

# local
jaraco.classes
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -27,7 +27,7 @@ commands =
skip_install = True
deps =
build
twine[keyring]>=1.13
twine>=3
path
jaraco.develop>=7.1
passenv =
Expand Down

0 comments on commit 4fbbab1

Please sign in to comment.