blob: b5a2278eba2c9faf075d8a7f5df6d311ebfd0f52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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
|