mirror of
https://github.com/ceph/ceph
synced 2024-12-21 02:42:48 +00:00
ea6360ac26
Signed-off-by: Loic Dachary <loic@dachary.org>
20 lines
355 B
Python
20 lines
355 B
Python
import logging
|
|
from teuthology import misc
|
|
from teuthology.task import Task
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
class TeuthologyIntegration(Task):
|
|
|
|
def begin(self):
|
|
misc.sh("""
|
|
set -x
|
|
pip install tox
|
|
tox
|
|
# tox -e py27-integration
|
|
tox -e openstack-integration
|
|
""")
|
|
|
|
task = TeuthologyIntegration
|