Skip to content

Commit 706cdc6

Browse files
committed
Drop test-related code from package and setup.py
Signed-off-by: Alexey Stepanov <penguinolog@gmail.com>
1 parent 6663969 commit 706cdc6

File tree

4 files changed

+5
-14
lines changed

4 files changed

+5
-14
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
CHANGELOG
22
=========
3+
Version 1.0.5
4+
-------------
5+
* Drop test-related code from package and setup.py
6+
37
Version 1.0.4
48
-------------
59
* divide process and final result call

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include *.rst LICENSE test
1+
include *.rst LICENSE

README.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,6 @@ Test environments available:
169169
pylint
170170
docs
171171

172-
Also possible to run `python setup.py test` for unit tests and `python setup.py flake8` for code style tests,
173-
but it requires all package dependencies to be installed.
174-
175172
CI systems
176173
==========
177174
For code checking several CI systems is used in parallel:

setup.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
"""logwrap decorator for human-readable logging of command arguments"""
1818

1919
import setuptools
20-
import sys
2120

2221
import logwrap
2322

@@ -61,18 +60,9 @@
6160
'Decorator for logging function arguments by human-readable way'
6261
),
6362
long_description=long_description,
64-
install_requires=[
65-
'pytest-runner>=2.0', # python setup.py test
66-
],
6763
extras_require={
6864
':python_version == "2.7"': [
6965
'funcsigs>=1.0',
7066
],
7167
},
72-
tests_require=[
73-
'flake8',
74-
'tox>=2.0',
75-
'pytest>=3.0',
76-
'pytest-cov',
77-
] + ['mock'] if sys.version_info.major == 2 else [],
7868
)

0 commit comments

Comments
 (0)