【发布时间】:2018-07-23 23:30:53
【问题描述】:
我的项目目录是这样的
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.py中实际配置测试套件。
标签: python pytest setuptools setup.py