python setup.py 测试在使用 pytest 时无法精细测试
python setup.py test unable to fine tests when using pytest
我的项目目录如下所示
setup.py
chtools/
__init__.py
perspective-tool
lib/
tests/
__init__.py
setup.cfg
test_perspective.py
当我从我的项目目录(即与 setup.py 相同的级别)运行 pytest 时,一切都按预期工作。
(.venv) desktop:cloudhealth-tools$ pytest
platform linux -- Python 3.6.3, pytest-3.6.3, py-1.5.4, pluggy-0.6.0
rootdir: /home/jjk3/PycharmProjects/cloudhealth-tools, inifile:
collected 3 items
chtools/tests/test_perspective.py ... [100%]
但是当我 运行 python setup test
时找不到测试。
(.venv) desktop:cloudhealth-tools$ python setup.py test
running test
running egg_info
writing chtools.egg-info/PKG-INFO
writing dependency_links to chtools.egg-info/dependency_links.txt
writing entry points to chtools.egg-info/entry_points.txt
writing requirements to chtools.egg-info/requires.txt
writing top-level names to chtools.egg-info/top_level.txt
reading manifest file 'chtools.egg-info/SOURCES.txt'
writing manifest file 'chtools.egg-info/SOURCES.txt'
running build_ext
----------------------------------------------------------------------
Ran 0 tests in 0.000s
OK
我添加了 setup_requires
和 tests_require
,如 pytest 文档中所述,https://docs.pytest.org/en/2.9.1/goodpractices.html,但没有成功。
setup.py
如下:
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
setup(name='chtools',
version='1.0.6',
description='Automation Tools for CloudHealth',
url='https://github.com/bluechiptek/cloudhealth-tools',
author='BlueChipTek',
author_email='joe@bluechiptek.com',
long_description_content_type='text/markdown',
long_description=readme,
license='GPLv3',
packages=find_packages(),
python_requires='>=3',
install_requires=[
'certifi==2018.1.18',
'chardet==3.0.4',
'idna==2.6',
'PyYAML==3.13',
'requests==2.18.4',
'urllib3==1.22'
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
entry_points={
'console_scripts': ['perspective-tool=chtools.perspective_tool:main']
},
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3 :: Only'
]
)
在此先感谢您的帮助!
您的 setup.cfg
驻留在错误的目录中:它必须与 setup.py
:
相邻
chtools/
__init__.py
lib/
perspective-tool
tests/
__init__.py
test_perspective.py
setup.cfg
setup.py
您应该在 setup.cfg
:
中声明一个别名 test
[aliases]
test=pytest
我的项目目录如下所示
setup.py
chtools/
__init__.py
perspective-tool
lib/
tests/
__init__.py
setup.cfg
test_perspective.py
当我从我的项目目录(即与 setup.py 相同的级别)运行 pytest 时,一切都按预期工作。
(.venv) desktop:cloudhealth-tools$ pytest
platform linux -- Python 3.6.3, pytest-3.6.3, py-1.5.4, pluggy-0.6.0
rootdir: /home/jjk3/PycharmProjects/cloudhealth-tools, inifile:
collected 3 items
chtools/tests/test_perspective.py ... [100%]
但是当我 运行 python setup test
时找不到测试。
(.venv) desktop:cloudhealth-tools$ python setup.py test
running test
running egg_info
writing chtools.egg-info/PKG-INFO
writing dependency_links to chtools.egg-info/dependency_links.txt
writing entry points to chtools.egg-info/entry_points.txt
writing requirements to chtools.egg-info/requires.txt
writing top-level names to chtools.egg-info/top_level.txt
reading manifest file 'chtools.egg-info/SOURCES.txt'
writing manifest file 'chtools.egg-info/SOURCES.txt'
running build_ext
----------------------------------------------------------------------
Ran 0 tests in 0.000s
OK
我添加了 setup_requires
和 tests_require
,如 pytest 文档中所述,https://docs.pytest.org/en/2.9.1/goodpractices.html,但没有成功。
setup.py
如下:
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
setup(name='chtools',
version='1.0.6',
description='Automation Tools for CloudHealth',
url='https://github.com/bluechiptek/cloudhealth-tools',
author='BlueChipTek',
author_email='joe@bluechiptek.com',
long_description_content_type='text/markdown',
long_description=readme,
license='GPLv3',
packages=find_packages(),
python_requires='>=3',
install_requires=[
'certifi==2018.1.18',
'chardet==3.0.4',
'idna==2.6',
'PyYAML==3.13',
'requests==2.18.4',
'urllib3==1.22'
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
entry_points={
'console_scripts': ['perspective-tool=chtools.perspective_tool:main']
},
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3 :: Only'
]
)
在此先感谢您的帮助!
您的 setup.cfg
驻留在错误的目录中:它必须与 setup.py
:
chtools/
__init__.py
lib/
perspective-tool
tests/
__init__.py
test_perspective.py
setup.cfg
setup.py
您应该在 setup.cfg
:
test
[aliases]
test=pytest