teuthology 1.0.0__py3-none-any.whl → 1.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- scripts/describe.py +1 -0
- scripts/dispatcher.py +62 -0
- scripts/exporter.py +18 -0
- scripts/lock.py +1 -1
- scripts/node_cleanup.py +58 -0
- scripts/openstack.py +9 -9
- scripts/results.py +12 -11
- scripts/run.py +4 -0
- scripts/schedule.py +4 -0
- scripts/suite.py +61 -16
- scripts/supervisor.py +44 -0
- scripts/update_inventory.py +10 -4
- scripts/wait.py +31 -0
- teuthology/__init__.py +24 -21
- teuthology/beanstalk.py +4 -3
- teuthology/config.py +17 -6
- teuthology/contextutil.py +18 -14
- teuthology/describe_tests.py +25 -18
- teuthology/dispatcher/__init__.py +365 -0
- teuthology/dispatcher/supervisor.py +374 -0
- teuthology/exceptions.py +54 -0
- teuthology/exporter.py +347 -0
- teuthology/kill.py +76 -75
- teuthology/lock/cli.py +16 -7
- teuthology/lock/ops.py +276 -70
- teuthology/lock/query.py +61 -44
- teuthology/ls.py +9 -18
- teuthology/misc.py +152 -137
- teuthology/nuke/__init__.py +12 -351
- teuthology/openstack/__init__.py +4 -3
- teuthology/openstack/openstack-centos-7.0-user-data.txt +1 -1
- teuthology/openstack/openstack-centos-7.1-user-data.txt +1 -1
- teuthology/openstack/openstack-centos-7.2-user-data.txt +1 -1
- teuthology/openstack/openstack-debian-8.0-user-data.txt +1 -1
- teuthology/openstack/openstack-opensuse-42.1-user-data.txt +1 -1
- teuthology/openstack/openstack-teuthology.cron +0 -1
- teuthology/orchestra/cluster.py +51 -9
- teuthology/orchestra/connection.py +23 -16
- teuthology/orchestra/console.py +111 -50
- teuthology/orchestra/daemon/cephadmunit.py +23 -5
- teuthology/orchestra/daemon/state.py +10 -3
- teuthology/orchestra/daemon/systemd.py +10 -8
- teuthology/orchestra/opsys.py +32 -11
- teuthology/orchestra/remote.py +369 -152
- teuthology/orchestra/run.py +21 -12
- teuthology/packaging.py +54 -15
- teuthology/provision/__init__.py +30 -10
- teuthology/provision/cloud/openstack.py +12 -6
- teuthology/provision/cloud/util.py +1 -2
- teuthology/provision/downburst.py +83 -29
- teuthology/provision/fog.py +68 -20
- teuthology/provision/openstack.py +5 -4
- teuthology/provision/pelagos.py +13 -5
- teuthology/repo_utils.py +91 -44
- teuthology/report.py +57 -35
- teuthology/results.py +5 -3
- teuthology/run.py +21 -15
- teuthology/run_tasks.py +114 -40
- teuthology/schedule.py +4 -3
- teuthology/scrape.py +28 -22
- teuthology/suite/__init__.py +75 -46
- teuthology/suite/build_matrix.py +34 -24
- teuthology/suite/fragment-merge.lua +105 -0
- teuthology/suite/matrix.py +31 -2
- teuthology/suite/merge.py +175 -0
- teuthology/suite/placeholder.py +8 -8
- teuthology/suite/run.py +204 -102
- teuthology/suite/util.py +67 -211
- teuthology/task/__init__.py +1 -1
- teuthology/task/ansible.py +101 -31
- teuthology/task/buildpackages.py +2 -2
- teuthology/task/ceph_ansible.py +13 -6
- teuthology/task/cephmetrics.py +2 -1
- teuthology/task/clock.py +33 -14
- teuthology/task/exec.py +18 -0
- teuthology/task/hadoop.py +2 -2
- teuthology/task/install/__init__.py +51 -22
- teuthology/task/install/bin/adjust-ulimits +16 -0
- teuthology/task/install/bin/daemon-helper +114 -0
- teuthology/task/install/bin/stdin-killer +263 -0
- teuthology/task/install/deb.py +24 -4
- teuthology/task/install/redhat.py +36 -32
- teuthology/task/install/rpm.py +41 -14
- teuthology/task/install/util.py +48 -22
- teuthology/task/internal/__init__.py +69 -11
- teuthology/task/internal/edit_sudoers.sh +10 -0
- teuthology/task/internal/lock_machines.py +3 -133
- teuthology/task/internal/redhat.py +48 -28
- teuthology/task/internal/syslog.py +31 -8
- teuthology/task/kernel.py +155 -147
- teuthology/task/lockfile.py +1 -1
- teuthology/task/mpi.py +10 -10
- teuthology/task/pcp.py +1 -1
- teuthology/task/selinux.py +17 -8
- teuthology/task/ssh_keys.py +6 -6
- teuthology/task/tests/__init__.py +137 -77
- teuthology/task/tests/test_fetch_coredumps.py +116 -0
- teuthology/task/tests/test_run.py +4 -4
- teuthology/timer.py +3 -3
- teuthology/util/loggerfile.py +19 -0
- teuthology/util/scanner.py +159 -0
- teuthology/util/sentry.py +52 -0
- teuthology/util/time.py +52 -0
- teuthology-1.2.0.data/scripts/adjust-ulimits +16 -0
- teuthology-1.2.0.data/scripts/daemon-helper +114 -0
- teuthology-1.2.0.data/scripts/stdin-killer +263 -0
- teuthology-1.2.0.dist-info/METADATA +89 -0
- teuthology-1.2.0.dist-info/RECORD +174 -0
- {teuthology-1.0.0.dist-info → teuthology-1.2.0.dist-info}/WHEEL +1 -1
- {teuthology-1.0.0.dist-info → teuthology-1.2.0.dist-info}/entry_points.txt +5 -2
- scripts/nuke.py +0 -45
- scripts/worker.py +0 -37
- teuthology/nuke/actions.py +0 -456
- teuthology/openstack/test/__init__.py +0 -0
- teuthology/openstack/test/openstack-integration.py +0 -286
- teuthology/openstack/test/test_config.py +0 -35
- teuthology/openstack/test/test_openstack.py +0 -1695
- teuthology/orchestra/test/__init__.py +0 -0
- teuthology/orchestra/test/integration/__init__.py +0 -0
- teuthology/orchestra/test/integration/test_integration.py +0 -94
- teuthology/orchestra/test/test_cluster.py +0 -240
- teuthology/orchestra/test/test_connection.py +0 -106
- teuthology/orchestra/test/test_console.py +0 -217
- teuthology/orchestra/test/test_opsys.py +0 -404
- teuthology/orchestra/test/test_remote.py +0 -185
- teuthology/orchestra/test/test_run.py +0 -286
- teuthology/orchestra/test/test_systemd.py +0 -54
- teuthology/orchestra/test/util.py +0 -12
- teuthology/sentry.py +0 -18
- teuthology/test/__init__.py +0 -0
- teuthology/test/fake_archive.py +0 -107
- teuthology/test/fake_fs.py +0 -92
- teuthology/test/integration/__init__.py +0 -0
- teuthology/test/integration/test_suite.py +0 -86
- teuthology/test/task/__init__.py +0 -205
- teuthology/test/task/test_ansible.py +0 -624
- teuthology/test/task/test_ceph_ansible.py +0 -176
- teuthology/test/task/test_console_log.py +0 -88
- teuthology/test/task/test_install.py +0 -337
- teuthology/test/task/test_internal.py +0 -57
- teuthology/test/task/test_kernel.py +0 -243
- teuthology/test/task/test_pcp.py +0 -379
- teuthology/test/task/test_selinux.py +0 -35
- teuthology/test/test_config.py +0 -189
- teuthology/test/test_contextutil.py +0 -68
- teuthology/test/test_describe_tests.py +0 -316
- teuthology/test/test_email_sleep_before_teardown.py +0 -81
- teuthology/test/test_exit.py +0 -97
- teuthology/test/test_get_distro.py +0 -47
- teuthology/test/test_get_distro_version.py +0 -47
- teuthology/test/test_get_multi_machine_types.py +0 -27
- teuthology/test/test_job_status.py +0 -60
- teuthology/test/test_ls.py +0 -48
- teuthology/test/test_misc.py +0 -368
- teuthology/test/test_nuke.py +0 -232
- teuthology/test/test_packaging.py +0 -763
- teuthology/test/test_parallel.py +0 -28
- teuthology/test/test_repo_utils.py +0 -204
- teuthology/test/test_report.py +0 -77
- teuthology/test/test_results.py +0 -155
- teuthology/test/test_run.py +0 -238
- teuthology/test/test_safepath.py +0 -55
- teuthology/test/test_schedule.py +0 -45
- teuthology/test/test_scrape.py +0 -167
- teuthology/test/test_timer.py +0 -80
- teuthology/test/test_vps_os_vers_parameter_checking.py +0 -84
- teuthology/test/test_worker.py +0 -303
- teuthology/worker.py +0 -339
- teuthology-1.0.0.dist-info/METADATA +0 -76
- teuthology-1.0.0.dist-info/RECORD +0 -210
- {teuthology-1.0.0.dist-info → teuthology-1.2.0.dist-info}/LICENSE +0 -0
- {teuthology-1.0.0.dist-info → teuthology-1.2.0.dist-info}/top_level.txt +0 -0
@@ -1,76 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: teuthology
|
3
|
-
Version: 1.0.0
|
4
|
-
Summary: Ceph test framework
|
5
|
-
Home-page: https://github.com/ceph/teuthology
|
6
|
-
Author: Inktank Storage, Inc.
|
7
|
-
Author-email: ceph-qa@ceph.com
|
8
|
-
License: MIT
|
9
|
-
Keywords: teuthology test ceph cluster
|
10
|
-
Platform: UNKNOWN
|
11
|
-
Classifier: Intended Audience :: Developers
|
12
|
-
Classifier: License :: OSI Approved :: MIT License
|
13
|
-
Classifier: Natural Language :: English
|
14
|
-
Classifier: Operating System :: POSIX :: Linux
|
15
|
-
Classifier: Programming Language :: Python :: 3.6
|
16
|
-
Classifier: Topic :: Software Development :: Quality Assurance
|
17
|
-
Classifier: Topic :: Software Development :: Testing
|
18
|
-
Classifier: Topic :: System :: Distributed Computing
|
19
|
-
Classifier: Topic :: System :: Filesystems
|
20
|
-
Requires-Python: >=3.6
|
21
|
-
Requires-Dist: apache-libcloud
|
22
|
-
Requires-Dist: gevent
|
23
|
-
Requires-Dist: PyYAML
|
24
|
-
Requires-Dist: argparse (>=1.2.1)
|
25
|
-
Requires-Dist: configobj
|
26
|
-
Requires-Dist: six (>=1.9)
|
27
|
-
Requires-Dist: pexpect
|
28
|
-
Requires-Dist: docopt
|
29
|
-
Requires-Dist: netaddr
|
30
|
-
Requires-Dist: paramiko
|
31
|
-
Requires-Dist: psutil (>=2.1.0)
|
32
|
-
Requires-Dist: configparser
|
33
|
-
Requires-Dist: ansible (>=2.0)
|
34
|
-
Requires-Dist: prettytable
|
35
|
-
Requires-Dist: manhole
|
36
|
-
Requires-Dist: humanfriendly
|
37
|
-
Provides-Extra: orchestra
|
38
|
-
Requires-Dist: backports.ssl-match-hostname ; extra == 'orchestra'
|
39
|
-
Requires-Dist: beanstalkc3 (>=0.4.0) ; extra == 'orchestra'
|
40
|
-
Requires-Dist: httplib2 ; extra == 'orchestra'
|
41
|
-
Requires-Dist: ndg-httpsclient ; extra == 'orchestra'
|
42
|
-
Requires-Dist: pyasn1 ; extra == 'orchestra'
|
43
|
-
Requires-Dist: pyopenssl (>=0.13) ; extra == 'orchestra'
|
44
|
-
Requires-Dist: python-dateutil ; extra == 'orchestra'
|
45
|
-
Requires-Dist: python-novaclient ; extra == 'orchestra'
|
46
|
-
Requires-Dist: python-openstackclient ; extra == 'orchestra'
|
47
|
-
Requires-Dist: python-neutronclient ; extra == 'orchestra'
|
48
|
-
Requires-Dist: raven ; extra == 'orchestra'
|
49
|
-
Requires-Dist: requests (!=2.13.0) ; extra == 'orchestra'
|
50
|
-
Provides-Extra: test
|
51
|
-
Requires-Dist: boto (>=2.0b4) ; extra == 'test'
|
52
|
-
Requires-Dist: cryptography (>=2.7) ; extra == 'test'
|
53
|
-
Requires-Dist: nose ; extra == 'test'
|
54
|
-
Requires-Dist: pip-tools ; extra == 'test'
|
55
|
-
Requires-Dist: pytest ; extra == 'test'
|
56
|
-
Requires-Dist: requests ; extra == 'test'
|
57
|
-
Requires-Dist: tox ; extra == 'test'
|
58
|
-
Requires-Dist: xmltodict ; extra == 'test'
|
59
|
-
Requires-Dist: boto3 ; extra == 'test'
|
60
|
-
Requires-Dist: PyJWT ; extra == 'test'
|
61
|
-
Requires-Dist: ipy ; extra == 'test'
|
62
|
-
Requires-Dist: toml ; extra == 'test'
|
63
|
-
|
64
|
-
===================================================
|
65
|
-
`Teuthology` -- The Ceph integration test framework
|
66
|
-
===================================================
|
67
|
-
|
68
|
-
|
69
|
-
Welcome! Teuthology's documentation is primarily hosted at `docs.ceph.com
|
70
|
-
<http://docs.ceph.com/teuthology/docs/>`__.
|
71
|
-
|
72
|
-
You can also look at docs `inside this repository <docs/>`__, but note that
|
73
|
-
GitHub's `RST <http://docutils.sourceforge.net/rst.html>`__ rendering is quite
|
74
|
-
limited. Mainly that means that links between documents will be broken.
|
75
|
-
|
76
|
-
|
@@ -1,210 +0,0 @@
|
|
1
|
-
scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
scripts/describe.py,sha256=EG6bJ_sNc0HcwwmDcU2NoYyZt1Go_0MTN6Gck5ghsAI,3706
|
3
|
-
scripts/kill.py,sha256=EvkEA8_60WfCyvifVyaqYlVJfFRJxSoM0iTmUnXXHR8,1662
|
4
|
-
scripts/lock.py,sha256=zjSIm0MM_7VI-faYREFh2VkFAnIqsrnYFZ4Gi010UPw,5229
|
5
|
-
scripts/ls.py,sha256=3-mobC_B9WpsSx0Oa6hf-bjEx1N-BAU_jgNGFLQgtYE,393
|
6
|
-
scripts/nuke.py,sha256=sLEqfroHCI6pFEA9FsSpQsb5755Zn781o3_pBIYUf0s,1732
|
7
|
-
scripts/openstack.py,sha256=tlHb0vveL8juBQ8olzDQ3zFdt5SFVC_i_aYbbD3KCog,13117
|
8
|
-
scripts/prune_logs.py,sha256=VL5yXKMBqGHtpkEQ7p4yCaNuAMrmifnCRUA_aRUW3hM,1377
|
9
|
-
scripts/queue.py,sha256=JAusXNUem4X-rnZ8cqHsfndBqzjKsmB5J05KvaxOpUw,1175
|
10
|
-
scripts/reimage.py,sha256=HFqQGBBBPGthCINk5ieBRaO1JheNIY4A0MuflWjVjYo,912
|
11
|
-
scripts/report.py,sha256=OaF7lQzxx7bwvrXEDhoLANzULGuvIUtEHIRgoxHjImE,1704
|
12
|
-
scripts/results.py,sha256=fZA4OuWoOLwCbLTl0abWQQ2TaY1i1vA8-XEkj2XflGU,866
|
13
|
-
scripts/run.py,sha256=0Vgd29YOy-0Ip8-m0WvQT7Lc_m87cP1uWuzUKcxf0WM,1295
|
14
|
-
scripts/schedule.py,sha256=qkxJ3E5yXANBHQioHQueg8u9rK1SFO5oozNMBSRHgg8,2686
|
15
|
-
scripts/suite.py,sha256=_mdRS3I6fVLnZoEnQeAIpFc-EwCraRYAG19_bfl7Lg8,10850
|
16
|
-
scripts/update_inventory.py,sha256=jIN1eM8SQsO5P0QK4D2qRlK6DFu_VEsrlvQHLcHFZdw,926
|
17
|
-
scripts/updatekeys.py,sha256=JKrf8md1pW_R91yN51vGXtUJqs9bWCXshqaFFBRwNFI,859
|
18
|
-
scripts/worker.py,sha256=BL2K2lYx8JJ7b2rrRYdONBnvA-9v6nUtohLGsycEr5U,855
|
19
|
-
teuthology/__init__.py,sha256=pwT3cK06WCgGGZSPQNt67RCSI52watbfGza736Y58sQ,3753
|
20
|
-
teuthology/beanstalk.py,sha256=bOtLSpZub1vo-VK3qpXBjLeZdvkgAvSsR7Zt-iqog2s,6257
|
21
|
-
teuthology/config.py,sha256=H30mVA22xJmkHosxNBsQjkYBCMt1P78kiKiIjww7Iww,8564
|
22
|
-
teuthology/contextutil.py,sha256=SZrjRwfxPzH1KICQplA5XjH8iNKg6-RI4vT6EIb8cCM,4859
|
23
|
-
teuthology/describe_tests.py,sha256=aIxeUaqiEmzTA2emPi1xQJVurdFc86x8k3gUkedziPg,12245
|
24
|
-
teuthology/exceptions.py,sha256=OCcZoxgnd7tG2GTOcVF6UjOFzN1Zd7nvzTH4E4o41ig,4234
|
25
|
-
teuthology/exit.py,sha256=zBX_kBqqm3qp-lB-zPj5ZcDTdV_FmYeifEL7Z7u-9F8,1983
|
26
|
-
teuthology/job_status.py,sha256=3CWkKOFvRtqj_xYnRBeth-RYidKynum4Qcdu-HVuv_4,975
|
27
|
-
teuthology/kill.py,sha256=L-BTil2D9L4k6V06APFKyqh8vZgBE5VfMS_Q9K8DG6Y,7423
|
28
|
-
teuthology/ls.py,sha256=YAFcM0w68wM2TtVjLahg2C3CqyYpA2YdDWx9ys5mmhc,2360
|
29
|
-
teuthology/misc.py,sha256=MZMMAjuHfu_uAh4JwZoyGoM8DdwvOY09czXId2Fpy3I,40736
|
30
|
-
teuthology/packaging.py,sha256=S9rkTByusVAuR5eY-gTebXySDqZvI3LkWi7ohKmtudI,33823
|
31
|
-
teuthology/parallel.py,sha256=x4q5Fr4iLn52usjJBkI0EbGSpD9JI6AXItvuf7sBgBg,2890
|
32
|
-
teuthology/prune.py,sha256=vRxHf-yQ1bkNu6TsFUzeapdTR2C7kUQcCHBEuL8rnRc,7345
|
33
|
-
teuthology/reimage.py,sha256=rIe4PfA6uF3vAEWpyQUxfVFLP8ueAw4CtJFLsw9Ymls,1904
|
34
|
-
teuthology/repo_utils.py,sha256=N57RI4R8XliNsa_jRhiCs6o9aH9lX8c7FH2XRLgUojk,14228
|
35
|
-
teuthology/report.py,sha256=Z5RCuHNOQwX3vZXIcCUUMz2zrBPrdV-r14gIxIkjw_c,19265
|
36
|
-
teuthology/results.py,sha256=CTAgAVBx5-dPa8H1UTG0gzFp0x9ndzwREeC0hukDzY0,8455
|
37
|
-
teuthology/run.py,sha256=jfP78fxNwFSDG7upsQioS6PhkNBteOn_UWp3i7jbxtg,12863
|
38
|
-
teuthology/run_tasks.py,sha256=91QvUUt7Y0N-V3kgOBSAATB7FEQyo0v3HKALokoQhzk,9717
|
39
|
-
teuthology/safepath.py,sha256=AvzzYmXIySHdz9mEVSQU1UnTV6lni3yTe_XKv-nXPSY,1226
|
40
|
-
teuthology/schedule.py,sha256=DoGy6dTK0ARguuryv6fQIzsSX-zamCUTAj96DfUkxc4,4625
|
41
|
-
teuthology/scrape.py,sha256=1qJ-8c6pE5Q1rpnwFOYJpBV1c_YMuPH5WB2HGd4SP3I,16997
|
42
|
-
teuthology/sentry.py,sha256=BJrU9e3lcjNSMXdSMziD6GzH0UmtrDbTd4yrUCREXo4,298
|
43
|
-
teuthology/timer.py,sha256=LOKMH8oaBDwexFNIkmA8Df-SEzGFrezAHVAKco5douY,3444
|
44
|
-
teuthology/worker.py,sha256=Izo3NK6ZO83B22nIXavF-haYZPn44mhMPcLYLRZsu3U,12263
|
45
|
-
teuthology/lock/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
46
|
-
teuthology/lock/cli.py,sha256=xQZdGXYcTeKNfT9MKUNoFiQ-ZCDfgiUaj42P3QINvpE,11406
|
47
|
-
teuthology/lock/ops.py,sha256=AWDVDRURBqfiMGzaIvW1HxVr9f14b1de10FH6FTD3dM,11143
|
48
|
-
teuthology/lock/query.py,sha256=3gnpeSWHk4A1xehnspgCVr2R4qzYp4ODs1eerA40_9Y,4549
|
49
|
-
teuthology/lock/util.py,sha256=nI7AAazV7aspr_s_jblVhDt6BuJxbBawN1IY755ngpA,3719
|
50
|
-
teuthology/lock/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
51
|
-
teuthology/lock/test/test_lock.py,sha256=Sxppi_4puEzXln6UtKY69ZC8ReXGRFV7ObPTOqRG-lI,229
|
52
|
-
teuthology/nuke/__init__.py,sha256=-gnuhz3etN2G4bLQ2J_4BgB05fzYxQZg5S44pzdy9Jc,12780
|
53
|
-
teuthology/nuke/actions.py,sha256=LIm_ljnTA99iD_EMiLkt9ptl7ZU5RDYyPLapxj_EcDk,14863
|
54
|
-
teuthology/openstack/__init__.py,sha256=lpO22Z_vq5-2UO0DOBTLR9906iFAhFqSIJgoCRuwO70,54813
|
55
|
-
teuthology/openstack/archive-key,sha256=x_4TjSfktzupIuRYnJA8vwFj6jspXGNVR_8YvajZBtU,1675
|
56
|
-
teuthology/openstack/archive-key.pub,sha256=k0jel1IFoPHxamhXEqkhcA2n_czoQLZeCMn_N-onbqY,391
|
57
|
-
teuthology/openstack/openstack-centos-6.5-user-data.txt,sha256=MAXQr7PH2sQmx9EUr9XdmEcnhlN7L0e0LEdL7LlnF-Q,1201
|
58
|
-
teuthology/openstack/openstack-centos-7.0-user-data.txt,sha256=4KA5lY66dzDuQq7YzTl5Vd7G4de_8P3LX9QkI8GMmsI,978
|
59
|
-
teuthology/openstack/openstack-centos-7.1-user-data.txt,sha256=4KA5lY66dzDuQq7YzTl5Vd7G4de_8P3LX9QkI8GMmsI,978
|
60
|
-
teuthology/openstack/openstack-centos-7.2-user-data.txt,sha256=4KA5lY66dzDuQq7YzTl5Vd7G4de_8P3LX9QkI8GMmsI,978
|
61
|
-
teuthology/openstack/openstack-debian-8.0-user-data.txt,sha256=lzoDNTiHtsK8RR2_Ao8u0wLlTcaIs5Vmc7xi_qcHIOU,1198
|
62
|
-
teuthology/openstack/openstack-opensuse-42.1-user-data.txt,sha256=1O-vq9xgqvddX8BWWlDFBWHWHQE0Xwy4y7epLwEwRz4,1822
|
63
|
-
teuthology/openstack/openstack-teuthology.cron,sha256=qtCM6_pYSm59yObivH_Hzk0Rhxo5AJdSvikHFXi-iJE,171
|
64
|
-
teuthology/openstack/openstack-teuthology.init,sha256=jjARL833tMT6RmbrrGCkitpc9NK4VSEV_2eHKVm1_ZI,7539
|
65
|
-
teuthology/openstack/openstack-ubuntu-12.04-user-data.txt,sha256=poTBKswDTm98VjXHnNLlO5p2OuLBWp5aKivM52yKxvU,988
|
66
|
-
teuthology/openstack/openstack-ubuntu-14.04-user-data.txt,sha256=Cko6ek8dU0VXXFD-HVYj179UZTzUu4ZGjze3DDJSz5w,905
|
67
|
-
teuthology/openstack/openstack-user-data.txt,sha256=lyzGBNI0hPury7DSsgqEyUfkc0GVyw6uHdKkZrg_5Wc,1024
|
68
|
-
teuthology/openstack/setup-openstack.sh,sha256=OYzY9Koy0iHun5aUMwL8VM_rpXxiMpD_BvNNS0hPR-Y,24471
|
69
|
-
teuthology/openstack/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
70
|
-
teuthology/openstack/test/openstack-integration.py,sha256=NLMamweGRVmtMP0XmY8TWstfwOqpU0kl87wjT7Z47wk,11062
|
71
|
-
teuthology/openstack/test/test_config.py,sha256=zF2i753ryi7Sm8Ig2wx0ImFetOecnOV0sk22VmmB7vc,1092
|
72
|
-
teuthology/openstack/test/test_openstack.py,sha256=CZ_o0KaMwVwvqKRjehc8krehlcSCSsC6jIH2KIoVHYA,42801
|
73
|
-
teuthology/orchestra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
74
|
-
teuthology/orchestra/cluster.py,sha256=rWdxJjOeXeyuQJpg8zEEv02w-RzIqo0e56hVCvTjYfE,4999
|
75
|
-
teuthology/orchestra/connection.py,sha256=dQ1rFhxxgG7UIRKk128SVb2FHgjm8iMiBBah8-wwWp0,3639
|
76
|
-
teuthology/orchestra/console.py,sha256=6Cn52cSFu9OTIH2X_TQPjzssxpFrm2Hz-4E_egIzt1I,13410
|
77
|
-
teuthology/orchestra/monkey.py,sha256=YtwEnrQyEOEJG2_oozzDmnfsB33jeAmtzvsxEbnLkfA,1385
|
78
|
-
teuthology/orchestra/opsys.py,sha256=VYvhqxPSVqfnsn2W8VTHSCJaYTPbyCyz4Ma-BHwqJ_8,6430
|
79
|
-
teuthology/orchestra/remote.py,sha256=6TETJU-jpayu36bq9799kl5nGwXBw-HGzuVd7VirWTU,16608
|
80
|
-
teuthology/orchestra/run.py,sha256=TxGkIJdhBJT6y0fZ4PfsbzD8YjLxLOkyNUbzLdDstTY,15692
|
81
|
-
teuthology/orchestra/daemon/__init__.py,sha256=gB0iOtyIROajsYE-UTT-unCnLxkeyYJxLQ7u2bqoaxk,66
|
82
|
-
teuthology/orchestra/daemon/cephadmunit.py,sha256=76SmrmAoG4t1OAUhWXib_V7KK4YXgaHGVS0GlGshneo,5540
|
83
|
-
teuthology/orchestra/daemon/group.py,sha256=ydMrCtJYFc2rIa1YUVdFS2UZ3exBkTvpPq8LCojxA7M,7625
|
84
|
-
teuthology/orchestra/daemon/state.py,sha256=Upy80GKtjuyEphlPtO3t8Ucu-gtozCJtYFgOARANjV0,5405
|
85
|
-
teuthology/orchestra/daemon/systemd.py,sha256=psK49prrO1FplfdRJNbxE_86esuB5G7A81D1-WXZQho,7460
|
86
|
-
teuthology/orchestra/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
87
|
-
teuthology/orchestra/test/test_cluster.py,sha256=5XUz26lvmSTy5UhbHbn3ae6OxuL5JhSsfN0a8vz4QNE,7320
|
88
|
-
teuthology/orchestra/test/test_connection.py,sha256=hNkA8rNqoVjobMMT6WDWiDM_I3vsB-tPwF8EE2zvLT8,3859
|
89
|
-
teuthology/orchestra/test/test_console.py,sha256=kwJJ9RdxcJvZhKcjNOOdNswj5_sUd7sQoucJRuiOLRU,7884
|
90
|
-
teuthology/orchestra/test/test_opsys.py,sha256=e-0iolBvzN2zEygFfbpvjE1zSs4WrGBAK11_Mm37ZNc,14030
|
91
|
-
teuthology/orchestra/test/test_remote.py,sha256=EGqPEO2_KF4gaKLfwH96tUzjrJFfK5eYN7ZWlXB_3SU,6472
|
92
|
-
teuthology/orchestra/test/test_run.py,sha256=P50UMcl_DMOFZZnw7Ee-GqbsYkLzb45Occ8JFIPGMIY,9537
|
93
|
-
teuthology/orchestra/test/test_systemd.py,sha256=rHtchbofw0-iInlw-b8mg-FR8hJxXfUcZk8w92WtuR4,1466
|
94
|
-
teuthology/orchestra/test/util.py,sha256=e2R2E3V-MGNtpQH_seetoR_aOwVtVLVvA0ncVtq5hJI,405
|
95
|
-
teuthology/orchestra/test/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
96
|
-
teuthology/orchestra/test/integration/test_integration.py,sha256=6kyexY9rIcIFOizZEAXTYycXXEL6m-RS8Un6yqaVvPg,2773
|
97
|
-
teuthology/provision/__init__.py,sha256=-b98LlNvabq0j8o1fP0rHMNqNG1XXBEnP03kkqRCTAs,4441
|
98
|
-
teuthology/provision/downburst.py,sha256=k9hH8JcQ0j_SBVSQIy8xFoNxHbnzMUmx0iTlvdZCocY,10014
|
99
|
-
teuthology/provision/fog.py,sha256=UlRt5BMVNb88oCsDsK6aX42fKCNK9NSizSTjbP70ZqI,10707
|
100
|
-
teuthology/provision/openstack.py,sha256=Ri-phdnnLXA0Q6YsT__CXayeA3KInBwINoiBSEUNHLU,9556
|
101
|
-
teuthology/provision/pelagos.py,sha256=fG2vvzNwfns1HrOSBhwnFcIcz3x5tDBR_vZxB5HDtbw,5773
|
102
|
-
teuthology/provision/cloud/__init__.py,sha256=7MkeRHOFGqZcZbDElEK9ImHAvX_v3tmr7whpCq5WqEo,1274
|
103
|
-
teuthology/provision/cloud/base.py,sha256=eplTh55CAVG367EC3aoieUOZpMsaYP4bLDFPNcRTN-w,2475
|
104
|
-
teuthology/provision/cloud/openstack.py,sha256=SUznvVuV9DvoVFr982zoeRiY7Ojz5L_VVAV0wnqjN5E,15116
|
105
|
-
teuthology/provision/cloud/util.py,sha256=unkLgqM4XTg_UEsEwCciTtvUzOk0-S8wZQSMuSbXaRk,3486
|
106
|
-
teuthology/suite/__init__.py,sha256=0J_LDT7oGC9gXmYClDxgxVLmzNMqoeUti4NbwNxOmp4,8202
|
107
|
-
teuthology/suite/build_matrix.py,sha256=exK1pnx2_NGpw6xWVt7Rqd_sEW-kbTH7KUg_DbCjTDo,6739
|
108
|
-
teuthology/suite/matrix.py,sha256=gZtNyjG3OSHQ1W-ml1rCIsDiV72anUa0kA31I_IbS2Q,10678
|
109
|
-
teuthology/suite/placeholder.py,sha256=BIZHaTy09FkR0SecbGqOxfbIk1dGaD7n55OYG-9rgyA,3622
|
110
|
-
teuthology/suite/run.py,sha256=dEF7xurSjiMskiOsgaOqelfOY6NwKqq3BwjXTqJzbTM,25209
|
111
|
-
teuthology/suite/util.py,sha256=AtBZmwq07zrO9wzhbXIcBgwU0lw0-O2POGo7g3GidzA,17631
|
112
|
-
teuthology/task/__init__.py,sha256=r0lPCqhdECrFXiZZASx6-EzoG5tYC278T-4i4tqyznI,4728
|
113
|
-
teuthology/task/ansible.py,sha256=rJ1sWfJZzlaK7kFe8xq9AFb11FbWuGt-u21mjN6SJzw,15559
|
114
|
-
teuthology/task/args.py,sha256=JUw2nCCEz4pUdEJT03l_PLHSJhV3bVBIEOOtkahapRY,1731
|
115
|
-
teuthology/task/background_exec.py,sha256=SY3CIRu2Q1lfC9iU6fSKgaR8v6Nw-ZjhYYCdsUaUl10,1908
|
116
|
-
teuthology/task/buildpackages.py,sha256=11_P5TmV6YEQdMpd1UTQRIOLGtw2bXffNFbaYBJVg5Y,8507
|
117
|
-
teuthology/task/ceph_ansible.py,sha256=Q39SNgawTf0_qShlSNukuqpwH5RG7cszO5XXtntEk8A,18230
|
118
|
-
teuthology/task/cephmetrics.py,sha256=rlg2CfVscDGrsmH1EadwJt40cbZyqPKWXrVqnsmRdlw,3299
|
119
|
-
teuthology/task/clock.py,sha256=MoZ06S5wKSh6uq2YaTL2p9nOi8BsIpjGuexmYc0wxvY,2889
|
120
|
-
teuthology/task/common_fs_utils.py,sha256=U3EkQn_k19Qd25xSsiF7FKzmot8ZQox_8V5s8tah1N0,3511
|
121
|
-
teuthology/task/console_log.py,sha256=7EL6EnPAHvqhMhAvVePuLrB6U7dYtN4SJpS4sQcd6PE,3571
|
122
|
-
teuthology/task/dump_ctx.py,sha256=xuygm6guySEhBNbO_YDCujGr0S5TjdH5tYdd7Bzc-_k,598
|
123
|
-
teuthology/task/exec.py,sha256=UFiT_riZMi-TSLiv8TEADmgGkC0_X3Qip_5qhvkMbqI,1720
|
124
|
-
teuthology/task/full_sequential.py,sha256=PtCeZ_T4ctdYJcw53QfBK4VTQLTuk9c2BIkypn0i9PE,995
|
125
|
-
teuthology/task/full_sequential_finally.py,sha256=C1sXt1n1JM4S6RChZu6pjahpsHAKVsJ0QeA0KXGb-Dc,1501
|
126
|
-
teuthology/task/hadoop.py,sha256=_gU9NLVFHEEHnVnn1QHO0Qy6WCXc87OEPq-ipc1lAHc,12817
|
127
|
-
teuthology/task/interactive.py,sha256=BRhp2vkm_2YcZTSn-oBjFto32-jJ9Edw0gWUPYfKVrM,974
|
128
|
-
teuthology/task/iscsi.py,sha256=jjAYmzmvbXkAzZ0XmBZwy6ZuImSDZGBlRsTtfkiwRvA,5580
|
129
|
-
teuthology/task/kernel.py,sha256=NjQKeJ9GVgpl0u4EA4aqruUgz96PLGurSZhInGHLH3g,49787
|
130
|
-
teuthology/task/knfsd.py,sha256=ZmCdqnE0oHp1T3bOLJerJjhx7FOlsGcKOWm2QgbKvf4,5395
|
131
|
-
teuthology/task/localdir.py,sha256=uFJ7nvQBgbe3oW2fmFFldwrGN8C8H5vhOPNGAmH2zyQ,1620
|
132
|
-
teuthology/task/lockfile.py,sha256=PAZBdXTgUTSjKnTvr11ztfcHMqmWJyuKX00XvAQX4K8,9004
|
133
|
-
teuthology/task/loop.py,sha256=lkIkyq2W9UF9tECjJIjue7UeBm6eNqfOkwoiTDE8Mno,1175
|
134
|
-
teuthology/task/mpi.py,sha256=mOu9EothQca4FaxYFjk-cl8ajADFvCB-PEB_8PPs_qQ,4449
|
135
|
-
teuthology/task/nfs.py,sha256=_CBXye-EjycfLGuWZKGvnv13Mdosl_aoR_mLb5XRS2M,4415
|
136
|
-
teuthology/task/nop.py,sha256=q4VyyPEs1mgZl3vtoMCMa2Ch4fxRZm6ERnEgZ3nC9EA,144
|
137
|
-
teuthology/task/parallel.py,sha256=w-v-d2NLFPV4vIuQ82hwngxh7yPb-82wvW5a2n4UuxA,2033
|
138
|
-
teuthology/task/parallel_example.py,sha256=aGmxQ2yklQQJ_63tNgm8xwbbk_2--zOHaSnKnbhBWgo,2461
|
139
|
-
teuthology/task/pcp.py,sha256=qzEC08PSpaE4O39vVLsNvWGQh6xR2hVYAevIWm3B8k4,10821
|
140
|
-
teuthology/task/pexec.py,sha256=oQIcVybe0yAtjtU--T-Zj9o2ZxcoqiBnA_FnMRsjW84,4250
|
141
|
-
teuthology/task/print.py,sha256=CDNGUKWIXkUvrg1abxVgYVSS2Eo_ZyVKx0bxIjPY-40,561
|
142
|
-
teuthology/task/proc_thrasher.py,sha256=Gc6YuUdpcA8RBYBCyCvgli3GCMbM6gBHWrpSA_Gaw1g,2404
|
143
|
-
teuthology/task/selinux.py,sha256=qf-MfBH3YLun-UNrmG2G_M0_uQTMR0SKGNRNZz9MTjk,7512
|
144
|
-
teuthology/task/sequential.py,sha256=fQHo7nAYN49H42pUweC6As2jHC6ar_OErLmlFMXUAMg,1344
|
145
|
-
teuthology/task/sleep.py,sha256=V-SBHuyhGJR3MgtdTELE8fMTBYr5DTHKdt8s2nyup2M,547
|
146
|
-
teuthology/task/ssh_keys.py,sha256=G2RyF16UyFRShJnHay3mjJHOxq_1jg7XqAVhdpb2GBU,6573
|
147
|
-
teuthology/task/tasktest.py,sha256=yrhIPAK1rpAa3kzqHfvzdOyM8vxkoPvLA8UbyqBxA7Y,1477
|
148
|
-
teuthology/task/timer.py,sha256=EsRwXAVofdAez6mpP7TO5A7lCVQU2nAZ3mXS-oDYn3c,1260
|
149
|
-
teuthology/task/install/__init__.py,sha256=lVE57mwREg2T_kcjtGwYZC0yguc7OQ356V4PTVFIYgE,19913
|
150
|
-
teuthology/task/install/deb.py,sha256=bDHm0f7xOO7liaX3aWUEZCgZggKWIq-l_Unvm-vWUGs,6527
|
151
|
-
teuthology/task/install/redhat.py,sha256=I3YxGeaaxKwCxyS7gWxyU3P7Wkiji5v_yuQqJaHy8uY,7854
|
152
|
-
teuthology/task/install/rpm.py,sha256=Kg_HHaYjwqWBdV6jMl0MsNEJCz6FooELVoDh-gvOcF8,14948
|
153
|
-
teuthology/task/install/util.py,sha256=b4ogLq4jXMayafFGS_ABeoJpl2b1b_iE2bKg09DwFu8,3494
|
154
|
-
teuthology/task/internal/__init__.py,sha256=j5FKn4VwKRC6SWkA2RAzKyUdCvcTzBGGlHrPENpPhOE,16448
|
155
|
-
teuthology/task/internal/check_lock.py,sha256=n6DpqdQhoqGBefpufekofYQ1sV_7dmR8m1abGahz50w,1188
|
156
|
-
teuthology/task/internal/git_ignore_ssl.py,sha256=GxYGFfP2_sBhQCRDd1cQ3ZRVQFu9ff46vYROF-F8FLw,489
|
157
|
-
teuthology/task/internal/lock_machines.py,sha256=d54g5EBQgJY7Z_ILrp1hrEOnAiYEqGXkDayhypVnOF8,6865
|
158
|
-
teuthology/task/internal/redhat.py,sha256=nP9DW9QdGDJMZ1OjLFx5aLrBrB8m4aU_gjP9cOE9F4A,9509
|
159
|
-
teuthology/task/internal/syslog.py,sha256=KeQnq7K9TeIiT_5u5WLWZlwXAO2JHlG0i7hU8JEH9xM,6107
|
160
|
-
teuthology/task/internal/vm_setup.py,sha256=cNlsBmVqXTYA6BgF5Sqd3k2eh87cnfuR1KdPUsOKskw,1825
|
161
|
-
teuthology/task/tests/__init__.py,sha256=o24Tl7teGYUc4SeTpcxI6SZyH3k6YOhOMpXnCGpMuAo,3723
|
162
|
-
teuthology/task/tests/test_locking.py,sha256=g2lkKkr8etr7dlCwSeIui61CAMzeGWtSgprf4ASkkk4,947
|
163
|
-
teuthology/task/tests/test_run.py,sha256=1C2GV5Vbs3urrd6RCzCUn5l8a-Dyb7XayOHuJtiQ5fw,1077
|
164
|
-
teuthology/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
165
|
-
teuthology/test/fake_archive.py,sha256=JHCVze6_8l8r8wkoDYVDdw7RYcIqWOv0W6fZ1o85qz4,3478
|
166
|
-
teuthology/test/fake_fs.py,sha256=0oMfI0lJvfN1VfLA-Z6ZCxuArNuAJggSE72MfQ6I-JM,3170
|
167
|
-
teuthology/test/test_config.py,sha256=SLEvvLW8pcLyq-4tqs9s3FHO6mEj_PlUYd0QF86JBbo,5997
|
168
|
-
teuthology/test/test_contextutil.py,sha256=gOYx3X6g98ApvgtRKa0aZdDRzeH-sJOnk_htwboTHpg,1989
|
169
|
-
teuthology/test/test_describe_tests.py,sha256=1ZIQ-tjyZ5yosGcn3qaEc4XReVD4zHuMF0Yqmg2eZmw,9764
|
170
|
-
teuthology/test/test_email_sleep_before_teardown.py,sha256=beLBNdB4XIKGGfV39MWDfCThQaTW3bF3CfOwukeKTMw,2699
|
171
|
-
teuthology/test/test_exit.py,sha256=KMDPSfPy8bUvqclFO9yxIz9QH4-sTrkf9aIDyrqUThc,3099
|
172
|
-
teuthology/test/test_get_distro.py,sha256=2swU4c9Z5mp31NR5b4vrOKbTm_9_R_GjFpMuQtopyJA,1349
|
173
|
-
teuthology/test/test_get_distro_version.py,sha256=MwoX-x0dn4jCFq6GjVQCq-o6NTK5fP_TUHaE_CQJJN8,1563
|
174
|
-
teuthology/test/test_get_multi_machine_types.py,sha256=pKPlJyHJr3h-yp6mpyeerLaBJ7KPgV4UUzQMFZe0W9s,762
|
175
|
-
teuthology/test/test_job_status.py,sha256=qb7SRP66J1zQlyiCtpeeWBMvAonrG-Ue8ru0GJ9PjUw,1853
|
176
|
-
teuthology/test/test_ls.py,sha256=XORL2g1IISdF64K3SvQTDHt5HUh8SmOig6VSeGUWBBU,1542
|
177
|
-
teuthology/test/test_misc.py,sha256=ERsf1FH58L6RBw0B2Oios16WKUZtfVYFzq7dTiw54Is,12667
|
178
|
-
teuthology/test/test_nuke.py,sha256=hKtbrdAo-8Fnd7qdRCKAlYn1ObkbKdhFEOCO4SYRtoM,7900
|
179
|
-
teuthology/test/test_packaging.py,sha256=kNgH3jPuY7gjg75_lHiJLNAcH-Q1QVdt1Q8R9JbcBKY,28228
|
180
|
-
teuthology/test/test_parallel.py,sha256=uHH10wYKDA3SXI1D1q6Wr7i9682FzKUC0M7gLZN_4Hc,771
|
181
|
-
teuthology/test/test_repo_utils.py,sha256=BdAGso_MCHz29QxdAhWDNx4dd_nr-aDb_pF2ofh4jhA,7876
|
182
|
-
teuthology/test/test_report.py,sha256=u7bnVtR1nv_ZkovsEtcSUgKZ6fBlnbmxHwsxYxsTOPk,2615
|
183
|
-
teuthology/test/test_results.py,sha256=NqwWo6hxZgMVTZu_Jd78iQmdoKWbGXtZozPk-CCdcrA,5290
|
184
|
-
teuthology/test/test_run.py,sha256=bEZjHIYiLsz7HAEm95t9z5zmswhVrxYxc_dJ5AsKVKQ,10392
|
185
|
-
teuthology/test/test_safepath.py,sha256=XaALVbwQoaHNCcy_lHPnrOVDmbyhQeXACd8KHW0iSQc,1409
|
186
|
-
teuthology/test/test_schedule.py,sha256=utunhYqPXHm5cwGAwPJl-Gi7sIS_wq2rotHJy-Bk1g0,1302
|
187
|
-
teuthology/test/test_scrape.py,sha256=nSFXBOLXRS73Bmqr-DxUE-jNJjXpUmfrzjAaGJdAjDc,5796
|
188
|
-
teuthology/test/test_timer.py,sha256=IPNA8QTXAHZnIyntW7DCSMTdo-CT7Asr1Vx-KEWkQVM,3287
|
189
|
-
teuthology/test/test_vps_os_vers_parameter_checking.py,sha256=Vn3XnXOZfY1NVsRgz9K0lD89xtGvydKJKbrjAXCuZMg,2861
|
190
|
-
teuthology/test/test_worker.py,sha256=QQRSiSAsLWVw4PdGkq3MiZLltudPy14dZm3r4WjJhEk,11295
|
191
|
-
teuthology/test/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
192
|
-
teuthology/test/integration/test_suite.py,sha256=oXb014eBY0qEs-ayjf0QI2vQDCT031fI86M383kuawA,3606
|
193
|
-
teuthology/test/task/__init__.py,sha256=o7mU5lZVN-kllvFAOq2x5KRiPyod9X46bYixyFM1zos,7038
|
194
|
-
teuthology/test/task/test_ansible.py,sha256=vcxjFssGB1TP7SjR7kssSqQ5kYFDDWKMrNNUfYCXZ94,21870
|
195
|
-
teuthology/test/task/test_ceph_ansible.py,sha256=N7YqjcmHxY8pGECLYLXV29j3WK1jmtDtbiCW6hpShTw,6072
|
196
|
-
teuthology/test/task/test_console_log.py,sha256=UmsVctkVdbamDAd8eQUXszLKSeuJrnIykAPxEVxPxpU,3189
|
197
|
-
teuthology/test/task/test_install.py,sha256=YePA8MThAqQssCGVTVStNv-vyI1vy9H_Efw4l_upmTw,12343
|
198
|
-
teuthology/test/task/test_internal.py,sha256=DadzLlHESqfrm1RiYMUgyhJXDduNhhJ6P1-Z2AO7Qic,2166
|
199
|
-
teuthology/test/task/test_kernel.py,sha256=-ZtETm-3Pl27eOrcBfc2ViFGmJ50UbcfzKZOlztbR-o,8486
|
200
|
-
teuthology/test/task/test_pcp.py,sha256=Z7L9JSGR6IqDfddA9SN8jX1Rd8XM6NpDHxOoSAnrEMs,13399
|
201
|
-
teuthology/test/task/test_selinux.py,sha256=jDkhdmNcZMsoNt17MV3-aufg_3K2qJqv8GMZSxGzoCI,1123
|
202
|
-
teuthology/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
203
|
-
teuthology/util/compat.py,sha256=3jWbf2QSMSwq2t5ZgoGZ7z0fk98sY489P7im8j6eoOU,458
|
204
|
-
teuthology/util/flock.py,sha256=iGliYoXBzaBdMCq6dSSSQOkXC3ByrIlxvdRtJaYOG4I,604
|
205
|
-
teuthology-1.0.0.dist-info/LICENSE,sha256=ghAkcYBW8nQm9oZJTob8w6h4Ga8ovjAv3boORc0qbYs,1057
|
206
|
-
teuthology-1.0.0.dist-info/METADATA,sha256=_RMvfncKMjVvpaD8JPJW7Sp---rrN3fRsU-AQmbrMjI,2864
|
207
|
-
teuthology-1.0.0.dist-info/WHEEL,sha256=g4nMs7d-Xl9-xC9XovUrsDHGXt-FT0E17Yqo92DEfvY,92
|
208
|
-
teuthology-1.0.0.dist-info/entry_points.txt,sha256=iR-36mq68stw8SAyQ6hhpj2wJEFwHsPUOb95LLJpdAY,719
|
209
|
-
teuthology-1.0.0.dist-info/top_level.txt,sha256=h2iGdGnj97Y9V5XwADbLYyhjY4Fek6KMSxrvYVNnphQ,19
|
210
|
-
teuthology-1.0.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|