rename test folder

This commit is contained in:
Robert Kaussow 2020-04-06 00:01:06 +02:00
parent 258f1a21f0
commit ca59fc5c5e
3 changed files with 3 additions and 4 deletions

View File

@ -8,7 +8,7 @@ exclude =
__pycache__ __pycache__
build build
dist dist
tests test
*.pyc *.pyc
*.egg-info *.egg-info
.cache .cache

View File

@ -28,4 +28,4 @@ filterwarnings =
ignore:.*pep8.*:FutureWarning ignore:.*pep8.*:FutureWarning
[coverage:run] [coverage:run]
omit = **/tests/* omit = **/test/*

View File

@ -38,7 +38,7 @@ setup(
license=get_property("__license__", PACKAGE_NAME), license=get_property("__license__", PACKAGE_NAME),
long_description=get_readme(), long_description=get_readme(),
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
packages=find_packages(exclude=["*.tests", "tests", "tests.*"]), packages=find_packages(exclude=["*.test", "test", "test.*"]),
package_data={"ansiblelater": ["data/*"]}, package_data={"ansiblelater": ["data/*"]},
python_requires=">=3.5,<4", python_requires=">=3.5,<4",
classifiers=[ classifiers=[
@ -65,5 +65,4 @@ setup(
"colorama", "anyconfig", "python-json-logger", "jsonschema", "pathspec", "toolz" "colorama", "anyconfig", "python-json-logger", "jsonschema", "pathspec", "toolz"
], ],
entry_points={"console_scripts": ["ansible-later = ansiblelater.__main__:main"]}, entry_points={"console_scripts": ["ansible-later = ansiblelater.__main__:main"]},
test_suite="tests"
) )