File tree Expand file tree Collapse file tree 4 files changed +5
-14
lines changed Expand file tree Collapse file tree 4 files changed +5
-14
lines changed Original file line number Diff line number Diff line change 11CHANGELOG
22=========
3+ Version 1.0.5
4+ -------------
5+ * Drop test-related code from package and setup.py
6+
37Version 1.0.4
48-------------
59* divide process and final result call
Original file line number Diff line number Diff line change 1- include *.rst LICENSE test
1+ include *.rst LICENSE
Original file line number Diff line number Diff 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-
175172CI systems
176173==========
177174For code checking several CI systems is used in parallel:
Original file line number Diff line number Diff line change 1717"""logwrap decorator for human-readable logging of command arguments"""
1818
1919import setuptools
20- import sys
2120
2221import logwrap
2322
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)
You can’t perform that action at this time.
0 commit comments