我的项目目录如下
setup.py
chtools/
__init__.py
perspective-tool
lib/
tests/
__init__.py
setup.cfg
test_perspective.py
当我从项目目录运行pytest时(即与setup.py处于同一级别),一切都会按预期进行。
(.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
我按照pytest文档https://docs.pytest.org/en/2.9.1/goodpractices.html中的说明添加了setup_requires
和tests_require
,但是没有运气。
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'
]
)
在此先感谢您的帮助!
答案 0 :(得分:1)
您的setup.cfg
位于错误的目录中:它必须与setup.py
相邻:
chtools/
__init__.py
lib/
perspective-tool
tests/
__init__.py
test_perspective.py
setup.cfg
setup.py
您应在test
中声明别名setup.cfg
:
[aliases]
test=pytest