mirror of
https://github.com/ceph/ceph
synced 2024-12-20 02:13:04 +00:00
e04f8fd3cd
Supports listing entire queue of machine type and deleting test suite runs from the queue without wiping the entire queue. Signed-off-by: Sandon Van Ness <sandon@inktank.com>
36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='teuthology',
|
|
version='0.0.1',
|
|
packages=find_packages(),
|
|
|
|
author='Tommi Virtanen',
|
|
author_email='tommi.virtanen@dreamhost.com',
|
|
description='Ceph test runner',
|
|
license='MIT',
|
|
keywords='ceph testing ssh cluster',
|
|
|
|
# to find the code associated with entry point
|
|
# A.B:foo first cd into directory A, open file B
|
|
# and find sub foo
|
|
entry_points={
|
|
'console_scripts': [
|
|
'teuthology = scripts.run:main',
|
|
'teuthology-nuke = scripts.nuke:main',
|
|
'teuthology-suite = scripts.suite:main',
|
|
'teuthology-ls = scripts.ls:main',
|
|
'teuthology-worker = scripts.worker:main',
|
|
'teuthology-lock = scripts.lock:main',
|
|
'teuthology-schedule = scripts.schedule:main',
|
|
'teuthology-updatekeys = scripts.updatekeys:main',
|
|
'teuthology-coverage = scripts.coverage:main',
|
|
'teuthology-results = scripts.results:main',
|
|
'teuthology-report = scripts.report:main',
|
|
'teuthology-kill = scripts.kill:main',
|
|
'teuthology-queue = scripts.queue:main',
|
|
],
|
|
},
|
|
|
|
)
|