mirror of
https://github.com/ceph/ceph
synced 2025-01-28 05:53:37 +00:00
11 lines
241 B
Plaintext
11 lines
241 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# This is the script that runs inside Jenkins.
|
||
|
# http://jenkins.ceph.com/job/teuthology-pull-requests/
|
||
|
|
||
|
virtualenv --version
|
||
|
virtualenv --system-site-packages --distribute venv
|
||
|
. venv/bin/activate
|
||
|
venv/bin/pip install tox
|
||
|
tox -rv
|