teuthology 1.1.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 +55 -26
- 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/schedule.py +4 -0
- scripts/suite.py +57 -16
- scripts/supervisor.py +44 -0
- scripts/update_inventory.py +10 -4
- teuthology/__init__.py +24 -26
- teuthology/beanstalk.py +4 -3
- teuthology/config.py +16 -6
- teuthology/contextutil.py +18 -14
- teuthology/describe_tests.py +25 -18
- teuthology/dispatcher/__init__.py +210 -35
- teuthology/dispatcher/supervisor.py +140 -58
- teuthology/exceptions.py +43 -0
- teuthology/exporter.py +347 -0
- teuthology/kill.py +76 -81
- teuthology/lock/cli.py +3 -3
- teuthology/lock/ops.py +135 -61
- teuthology/lock/query.py +61 -44
- teuthology/ls.py +1 -1
- teuthology/misc.py +61 -75
- teuthology/nuke/__init__.py +12 -353
- 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 +49 -7
- teuthology/orchestra/connection.py +16 -5
- teuthology/orchestra/console.py +111 -50
- teuthology/orchestra/daemon/cephadmunit.py +17 -4
- teuthology/orchestra/daemon/state.py +8 -1
- teuthology/orchestra/daemon/systemd.py +4 -4
- teuthology/orchestra/opsys.py +30 -11
- teuthology/orchestra/remote.py +405 -338
- teuthology/orchestra/run.py +3 -3
- teuthology/packaging.py +19 -16
- teuthology/provision/__init__.py +30 -10
- teuthology/provision/cloud/openstack.py +12 -6
- teuthology/provision/cloud/util.py +1 -2
- teuthology/provision/downburst.py +4 -3
- teuthology/provision/fog.py +68 -20
- teuthology/provision/openstack.py +5 -4
- teuthology/provision/pelagos.py +1 -1
- teuthology/repo_utils.py +43 -13
- teuthology/report.py +57 -35
- teuthology/results.py +5 -3
- teuthology/run.py +13 -14
- teuthology/run_tasks.py +27 -43
- teuthology/schedule.py +4 -3
- teuthology/scrape.py +28 -22
- teuthology/suite/__init__.py +74 -45
- 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 +6 -9
- teuthology/suite/run.py +175 -100
- teuthology/suite/util.py +64 -218
- teuthology/task/__init__.py +1 -1
- teuthology/task/ansible.py +101 -32
- 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 +29 -7
- 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 +1 -1
- teuthology/task/install/rpm.py +17 -5
- teuthology/task/install/util.py +3 -3
- teuthology/task/internal/__init__.py +41 -10
- teuthology/task/internal/edit_sudoers.sh +10 -0
- teuthology/task/internal/lock_machines.py +2 -9
- teuthology/task/internal/redhat.py +31 -1
- teuthology/task/internal/syslog.py +31 -8
- teuthology/task/kernel.py +152 -145
- teuthology/task/lockfile.py +1 -1
- teuthology/task/mpi.py +10 -10
- teuthology/task/pcp.py +1 -1
- teuthology/task/selinux.py +16 -8
- teuthology/task/ssh_keys.py +4 -4
- 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.1.0.dist-info → teuthology-1.2.0.dist-info}/WHEEL +1 -1
- {teuthology-1.1.0.dist-info → teuthology-1.2.0.dist-info}/entry_points.txt +3 -2
- scripts/nuke.py +0 -47
- 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/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 -391
- teuthology/test/test_nuke.py +0 -290
- teuthology/test/test_packaging.py +0 -763
- teuthology/test/test_parallel.py +0 -28
- teuthology/test/test_repo_utils.py +0 -225
- teuthology/test/test_report.py +0 -77
- teuthology/test/test_results.py +0 -155
- teuthology/test/test_run.py +0 -239
- 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 -354
- teuthology-1.1.0.dist-info/METADATA +0 -76
- teuthology-1.1.0.dist-info/RECORD +0 -213
- {teuthology-1.1.0.dist-info → teuthology-1.2.0.dist-info}/LICENSE +0 -0
- {teuthology-1.1.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.1.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-Dist: apache-libcloud
|
21
|
-
Requires-Dist: gevent
|
22
|
-
Requires-Dist: PyYAML
|
23
|
-
Requires-Dist: argparse (>=1.2.1)
|
24
|
-
Requires-Dist: configobj
|
25
|
-
Requires-Dist: six (>=1.9)
|
26
|
-
Requires-Dist: pexpect
|
27
|
-
Requires-Dist: docopt
|
28
|
-
Requires-Dist: netaddr
|
29
|
-
Requires-Dist: paramiko
|
30
|
-
Requires-Dist: psutil (>=2.1.0)
|
31
|
-
Requires-Dist: configparser
|
32
|
-
Requires-Dist: ansible (>=2.0)
|
33
|
-
Requires-Dist: prettytable
|
34
|
-
Requires-Dist: rocket-python (>=1.2.15)
|
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: requests (!=2.13.0) ; extra == 'orchestra'
|
49
|
-
Requires-Dist: sentry-sdk ; 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
|
-
<https://docs.ceph.com/projects/teuthology/>`__.
|
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,213 +0,0 @@
|
|
1
|
-
scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
scripts/describe.py,sha256=EG6bJ_sNc0HcwwmDcU2NoYyZt1Go_0MTN6Gck5ghsAI,3706
|
3
|
-
scripts/dispatcher.py,sha256=m8r6vmCi2JfWywyw6kfNzVYZBIL1jCgBKBUezDcmX-Y,1275
|
4
|
-
scripts/kill.py,sha256=EvkEA8_60WfCyvifVyaqYlVJfFRJxSoM0iTmUnXXHR8,1662
|
5
|
-
scripts/lock.py,sha256=zjSIm0MM_7VI-faYREFh2VkFAnIqsrnYFZ4Gi010UPw,5229
|
6
|
-
scripts/ls.py,sha256=3-mobC_B9WpsSx0Oa6hf-bjEx1N-BAU_jgNGFLQgtYE,393
|
7
|
-
scripts/nuke.py,sha256=6qYdmV1zPz6lnCRlewWNIfe0ynEQd_cE0Nnwlap5CH8,1876
|
8
|
-
scripts/openstack.py,sha256=tlHb0vveL8juBQ8olzDQ3zFdt5SFVC_i_aYbbD3KCog,13117
|
9
|
-
scripts/prune_logs.py,sha256=VL5yXKMBqGHtpkEQ7p4yCaNuAMrmifnCRUA_aRUW3hM,1377
|
10
|
-
scripts/queue.py,sha256=JAusXNUem4X-rnZ8cqHsfndBqzjKsmB5J05KvaxOpUw,1175
|
11
|
-
scripts/reimage.py,sha256=HFqQGBBBPGthCINk5ieBRaO1JheNIY4A0MuflWjVjYo,912
|
12
|
-
scripts/report.py,sha256=OaF7lQzxx7bwvrXEDhoLANzULGuvIUtEHIRgoxHjImE,1704
|
13
|
-
scripts/results.py,sha256=fZA4OuWoOLwCbLTl0abWQQ2TaY1i1vA8-XEkj2XflGU,866
|
14
|
-
scripts/run.py,sha256=Hk4mJ_ECG8Det-vQue5zizUWZMPaWHVpwd3JN28Gl3Y,1516
|
15
|
-
scripts/schedule.py,sha256=qkxJ3E5yXANBHQioHQueg8u9rK1SFO5oozNMBSRHgg8,2686
|
16
|
-
scripts/suite.py,sha256=NrEkTfY-QCrAsErUBgl1rawqnbaYiDaKZe4uDb84pjU,11145
|
17
|
-
scripts/update_inventory.py,sha256=jIN1eM8SQsO5P0QK4D2qRlK6DFu_VEsrlvQHLcHFZdw,926
|
18
|
-
scripts/updatekeys.py,sha256=JKrf8md1pW_R91yN51vGXtUJqs9bWCXshqaFFBRwNFI,859
|
19
|
-
scripts/wait.py,sha256=YtJ3rXb8sIUl1ojtzadjD3TE-YXRdOtkFXlJAmEh1IU,728
|
20
|
-
scripts/worker.py,sha256=BL2K2lYx8JJ7b2rrRYdONBnvA-9v6nUtohLGsycEr5U,855
|
21
|
-
teuthology/__init__.py,sha256=HdcBflemk01-H8_XlAZB3KwdgN0wEX8AiM_Zq3kcs5A,3990
|
22
|
-
teuthology/beanstalk.py,sha256=bOtLSpZub1vo-VK3qpXBjLeZdvkgAvSsR7Zt-iqog2s,6257
|
23
|
-
teuthology/config.py,sha256=pHQWZpfjZOr9K3QppLdPkEGLBNFT1teab6VP18qT5QI,8592
|
24
|
-
teuthology/contextutil.py,sha256=SZrjRwfxPzH1KICQplA5XjH8iNKg6-RI4vT6EIb8cCM,4859
|
25
|
-
teuthology/describe_tests.py,sha256=aIxeUaqiEmzTA2emPi1xQJVurdFc86x8k3gUkedziPg,12245
|
26
|
-
teuthology/exceptions.py,sha256=85MTkSpHXtBL9_ODvNBQPOrAFr8Kkp793F0H5OVqR1I,4548
|
27
|
-
teuthology/exit.py,sha256=zBX_kBqqm3qp-lB-zPj5ZcDTdV_FmYeifEL7Z7u-9F8,1983
|
28
|
-
teuthology/job_status.py,sha256=3CWkKOFvRtqj_xYnRBeth-RYidKynum4Qcdu-HVuv_4,975
|
29
|
-
teuthology/kill.py,sha256=jkDpzFRE6PBhn4BcTMIQUFcranbCQRxLCWAcStNiMU4,7789
|
30
|
-
teuthology/ls.py,sha256=vaikmMybTcYZ2nSrlOV3uipCE_6D54wuHkJzL2rHPBI,1992
|
31
|
-
teuthology/misc.py,sha256=jGOcJ7LET6S2BbjZrShRhTuH1jc786BfFmFNLC-2bUY,42240
|
32
|
-
teuthology/packaging.py,sha256=Jnkri8s3uTv2OocOLXgx1GASdCYuG3NBBTwKw6oI4Ss,35128
|
33
|
-
teuthology/parallel.py,sha256=x4q5Fr4iLn52usjJBkI0EbGSpD9JI6AXItvuf7sBgBg,2890
|
34
|
-
teuthology/prune.py,sha256=vRxHf-yQ1bkNu6TsFUzeapdTR2C7kUQcCHBEuL8rnRc,7345
|
35
|
-
teuthology/reimage.py,sha256=rIe4PfA6uF3vAEWpyQUxfVFLP8ueAw4CtJFLsw9Ymls,1904
|
36
|
-
teuthology/repo_utils.py,sha256=wPXIEoc95ei3LhArEqSJcf3YlFK-qSFQ-a10WOVrn_M,15687
|
37
|
-
teuthology/report.py,sha256=Z5RCuHNOQwX3vZXIcCUUMz2zrBPrdV-r14gIxIkjw_c,19265
|
38
|
-
teuthology/results.py,sha256=CTAgAVBx5-dPa8H1UTG0gzFp0x9ndzwREeC0hukDzY0,8455
|
39
|
-
teuthology/run.py,sha256=WwZvyfZBW2hXCWqG-70pWI_myAKbgs3BzCHUsU4xTsU,13280
|
40
|
-
teuthology/run_tasks.py,sha256=AJ-HCPtvJDDVYBke30MtiuT0xy_B4KmvTLXv3yg1e2c,12877
|
41
|
-
teuthology/safepath.py,sha256=AvzzYmXIySHdz9mEVSQU1UnTV6lni3yTe_XKv-nXPSY,1226
|
42
|
-
teuthology/schedule.py,sha256=DoGy6dTK0ARguuryv6fQIzsSX-zamCUTAj96DfUkxc4,4625
|
43
|
-
teuthology/scrape.py,sha256=1qJ-8c6pE5Q1rpnwFOYJpBV1c_YMuPH5WB2HGd4SP3I,16997
|
44
|
-
teuthology/timer.py,sha256=LOKMH8oaBDwexFNIkmA8Df-SEzGFrezAHVAKco5douY,3444
|
45
|
-
teuthology/worker.py,sha256=qdDkKZL7hwzBxi4ULsvcrVB29-a90NE1OUG6WGffdRI,13068
|
46
|
-
teuthology/dispatcher/__init__.py,sha256=jjkQut3zD1rMntzQGoe4HTG639Uf3AHQZdfvN8zZshY,6027
|
47
|
-
teuthology/dispatcher/supervisor.py,sha256=meEkvrcgk5liI6uD-rguAXuWUKmW0AQJ3yAAHmUMk3A,11175
|
48
|
-
teuthology/lock/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
|
-
teuthology/lock/cli.py,sha256=DZstpfolOhu1ZibGoy_VoE_4qaoWcXYx33TD6TDYLoY,11942
|
50
|
-
teuthology/lock/ops.py,sha256=tgSTbXlBIYBPVF2oFcu8vOqb2ftYo0nJKVmJnMB-qS8,16857
|
51
|
-
teuthology/lock/query.py,sha256=3gnpeSWHk4A1xehnspgCVr2R4qzYp4ODs1eerA40_9Y,4549
|
52
|
-
teuthology/lock/util.py,sha256=nI7AAazV7aspr_s_jblVhDt6BuJxbBawN1IY755ngpA,3719
|
53
|
-
teuthology/lock/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
54
|
-
teuthology/lock/test/test_lock.py,sha256=Sxppi_4puEzXln6UtKY69ZC8ReXGRFV7ObPTOqRG-lI,229
|
55
|
-
teuthology/nuke/__init__.py,sha256=wgihu6cTPm4WJW_65TcgBmy4gYGJvrkYXF3RZ-qOXR4,12935
|
56
|
-
teuthology/nuke/actions.py,sha256=LIm_ljnTA99iD_EMiLkt9ptl7ZU5RDYyPLapxj_EcDk,14863
|
57
|
-
teuthology/openstack/__init__.py,sha256=lpO22Z_vq5-2UO0DOBTLR9906iFAhFqSIJgoCRuwO70,54813
|
58
|
-
teuthology/openstack/archive-key,sha256=x_4TjSfktzupIuRYnJA8vwFj6jspXGNVR_8YvajZBtU,1675
|
59
|
-
teuthology/openstack/archive-key.pub,sha256=k0jel1IFoPHxamhXEqkhcA2n_czoQLZeCMn_N-onbqY,391
|
60
|
-
teuthology/openstack/openstack-centos-6.5-user-data.txt,sha256=MAXQr7PH2sQmx9EUr9XdmEcnhlN7L0e0LEdL7LlnF-Q,1201
|
61
|
-
teuthology/openstack/openstack-centos-7.0-user-data.txt,sha256=4KA5lY66dzDuQq7YzTl5Vd7G4de_8P3LX9QkI8GMmsI,978
|
62
|
-
teuthology/openstack/openstack-centos-7.1-user-data.txt,sha256=4KA5lY66dzDuQq7YzTl5Vd7G4de_8P3LX9QkI8GMmsI,978
|
63
|
-
teuthology/openstack/openstack-centos-7.2-user-data.txt,sha256=4KA5lY66dzDuQq7YzTl5Vd7G4de_8P3LX9QkI8GMmsI,978
|
64
|
-
teuthology/openstack/openstack-debian-8.0-user-data.txt,sha256=lzoDNTiHtsK8RR2_Ao8u0wLlTcaIs5Vmc7xi_qcHIOU,1198
|
65
|
-
teuthology/openstack/openstack-opensuse-42.1-user-data.txt,sha256=1O-vq9xgqvddX8BWWlDFBWHWHQE0Xwy4y7epLwEwRz4,1822
|
66
|
-
teuthology/openstack/openstack-teuthology.cron,sha256=qtCM6_pYSm59yObivH_Hzk0Rhxo5AJdSvikHFXi-iJE,171
|
67
|
-
teuthology/openstack/openstack-teuthology.init,sha256=jjARL833tMT6RmbrrGCkitpc9NK4VSEV_2eHKVm1_ZI,7539
|
68
|
-
teuthology/openstack/openstack-ubuntu-12.04-user-data.txt,sha256=poTBKswDTm98VjXHnNLlO5p2OuLBWp5aKivM52yKxvU,988
|
69
|
-
teuthology/openstack/openstack-ubuntu-14.04-user-data.txt,sha256=Cko6ek8dU0VXXFD-HVYj179UZTzUu4ZGjze3DDJSz5w,905
|
70
|
-
teuthology/openstack/openstack-user-data.txt,sha256=lyzGBNI0hPury7DSsgqEyUfkc0GVyw6uHdKkZrg_5Wc,1024
|
71
|
-
teuthology/openstack/setup-openstack.sh,sha256=OYzY9Koy0iHun5aUMwL8VM_rpXxiMpD_BvNNS0hPR-Y,24471
|
72
|
-
teuthology/openstack/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
73
|
-
teuthology/openstack/test/openstack-integration.py,sha256=NLMamweGRVmtMP0XmY8TWstfwOqpU0kl87wjT7Z47wk,11062
|
74
|
-
teuthology/openstack/test/test_config.py,sha256=zF2i753ryi7Sm8Ig2wx0ImFetOecnOV0sk22VmmB7vc,1092
|
75
|
-
teuthology/openstack/test/test_openstack.py,sha256=CZ_o0KaMwVwvqKRjehc8krehlcSCSsC6jIH2KIoVHYA,42801
|
76
|
-
teuthology/orchestra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
77
|
-
teuthology/orchestra/cluster.py,sha256=YkSUrhUuj91QJ3nCI56mxSFm6OX0dQe0BY2_lKXin1k,5015
|
78
|
-
teuthology/orchestra/connection.py,sha256=OyRvMm9a1rmNFq2JD7Nu3AnLxIcTsvby_-0DVYV9OiA,3405
|
79
|
-
teuthology/orchestra/console.py,sha256=6Cn52cSFu9OTIH2X_TQPjzssxpFrm2Hz-4E_egIzt1I,13410
|
80
|
-
teuthology/orchestra/monkey.py,sha256=YtwEnrQyEOEJG2_oozzDmnfsB33jeAmtzvsxEbnLkfA,1385
|
81
|
-
teuthology/orchestra/opsys.py,sha256=nad8HrElA-EwAYuSeBH3IMWrewpEs0Q4Nc_pU_OyP-c,6504
|
82
|
-
teuthology/orchestra/remote.py,sha256=aj9Oq7dz60cniMquVAeNAIzMYM0lXj9PAfgf7JKpOMc,22824
|
83
|
-
teuthology/orchestra/run.py,sha256=GUZLe_8QraVSJeHpz8N_uvR6KCoSy_RMYGeGpab-zc4,16180
|
84
|
-
teuthology/orchestra/daemon/__init__.py,sha256=gB0iOtyIROajsYE-UTT-unCnLxkeyYJxLQ7u2bqoaxk,66
|
85
|
-
teuthology/orchestra/daemon/cephadmunit.py,sha256=pG5q64p3xV1UlTQVQP_RdvXpOA02JPLsuQ6fhLnikRg,5812
|
86
|
-
teuthology/orchestra/daemon/group.py,sha256=ydMrCtJYFc2rIa1YUVdFS2UZ3exBkTvpPq8LCojxA7M,7625
|
87
|
-
teuthology/orchestra/daemon/state.py,sha256=kLrVLN-OQeQ4nxteCkgEN2hYpz1G_MHG2S3KkHfh1Ec,5411
|
88
|
-
teuthology/orchestra/daemon/systemd.py,sha256=MD6rMrrm-YWmStEFrVVnuedfgdubyCjP9V9ZGxqE9Jg,7519
|
89
|
-
teuthology/orchestra/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
90
|
-
teuthology/orchestra/test/test_cluster.py,sha256=5XUz26lvmSTy5UhbHbn3ae6OxuL5JhSsfN0a8vz4QNE,7320
|
91
|
-
teuthology/orchestra/test/test_connection.py,sha256=hNkA8rNqoVjobMMT6WDWiDM_I3vsB-tPwF8EE2zvLT8,3859
|
92
|
-
teuthology/orchestra/test/test_console.py,sha256=kwJJ9RdxcJvZhKcjNOOdNswj5_sUd7sQoucJRuiOLRU,7884
|
93
|
-
teuthology/orchestra/test/test_opsys.py,sha256=e-0iolBvzN2zEygFfbpvjE1zSs4WrGBAK11_Mm37ZNc,14030
|
94
|
-
teuthology/orchestra/test/test_remote.py,sha256=EGqPEO2_KF4gaKLfwH96tUzjrJFfK5eYN7ZWlXB_3SU,6472
|
95
|
-
teuthology/orchestra/test/test_run.py,sha256=P50UMcl_DMOFZZnw7Ee-GqbsYkLzb45Occ8JFIPGMIY,9537
|
96
|
-
teuthology/orchestra/test/test_systemd.py,sha256=rHtchbofw0-iInlw-b8mg-FR8hJxXfUcZk8w92WtuR4,1466
|
97
|
-
teuthology/orchestra/test/util.py,sha256=e2R2E3V-MGNtpQH_seetoR_aOwVtVLVvA0ncVtq5hJI,405
|
98
|
-
teuthology/orchestra/test/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
99
|
-
teuthology/orchestra/test/integration/test_integration.py,sha256=6kyexY9rIcIFOizZEAXTYycXXEL6m-RS8Un6yqaVvPg,2773
|
100
|
-
teuthology/provision/__init__.py,sha256=-b98LlNvabq0j8o1fP0rHMNqNG1XXBEnP03kkqRCTAs,4441
|
101
|
-
teuthology/provision/downburst.py,sha256=j_39zmIjpO6gxqS8yxex5j6EqzCYXnMj3rOOn3PgROM,12464
|
102
|
-
teuthology/provision/fog.py,sha256=UlRt5BMVNb88oCsDsK6aX42fKCNK9NSizSTjbP70ZqI,10707
|
103
|
-
teuthology/provision/openstack.py,sha256=Ri-phdnnLXA0Q6YsT__CXayeA3KInBwINoiBSEUNHLU,9556
|
104
|
-
teuthology/provision/pelagos.py,sha256=mp_Bsgqzjcpgpeh4UlCRuY_a6LWGG8vFynJj5Ub3pRw,6264
|
105
|
-
teuthology/provision/cloud/__init__.py,sha256=7MkeRHOFGqZcZbDElEK9ImHAvX_v3tmr7whpCq5WqEo,1274
|
106
|
-
teuthology/provision/cloud/base.py,sha256=eplTh55CAVG367EC3aoieUOZpMsaYP4bLDFPNcRTN-w,2475
|
107
|
-
teuthology/provision/cloud/openstack.py,sha256=SUznvVuV9DvoVFr982zoeRiY7Ojz5L_VVAV0wnqjN5E,15116
|
108
|
-
teuthology/provision/cloud/util.py,sha256=unkLgqM4XTg_UEsEwCciTtvUzOk0-S8wZQSMuSbXaRk,3486
|
109
|
-
teuthology/suite/__init__.py,sha256=GjiHao8AhaLhdVFEcKJ3pwX7V7i0zAX76rYwopQpOFU,8208
|
110
|
-
teuthology/suite/build_matrix.py,sha256=exK1pnx2_NGpw6xWVt7Rqd_sEW-kbTH7KUg_DbCjTDo,6739
|
111
|
-
teuthology/suite/matrix.py,sha256=gZtNyjG3OSHQ1W-ml1rCIsDiV72anUa0kA31I_IbS2Q,10678
|
112
|
-
teuthology/suite/placeholder.py,sha256=QoA2D-AKnSPnU45VViG2N9jn6bOCmfMBVPrg-4aTCHU,3786
|
113
|
-
teuthology/suite/run.py,sha256=kRw3qopwLyFEwCsZoiTT7CBkzN02oBxHCN8LEryicKA,26679
|
114
|
-
teuthology/suite/util.py,sha256=MuYMpW5vncyR3cLmf0nc63DMO8avQPfTFNqg2bhSh_o,18031
|
115
|
-
teuthology/task/__init__.py,sha256=r0lPCqhdECrFXiZZASx6-EzoG5tYC278T-4i4tqyznI,4728
|
116
|
-
teuthology/task/ansible.py,sha256=d9kyPSwa5z6QkgCTJh8FOyQzKnCX0gLe_ST6I76S96I,15592
|
117
|
-
teuthology/task/args.py,sha256=JUw2nCCEz4pUdEJT03l_PLHSJhV3bVBIEOOtkahapRY,1731
|
118
|
-
teuthology/task/background_exec.py,sha256=SY3CIRu2Q1lfC9iU6fSKgaR8v6Nw-ZjhYYCdsUaUl10,1908
|
119
|
-
teuthology/task/buildpackages.py,sha256=11_P5TmV6YEQdMpd1UTQRIOLGtw2bXffNFbaYBJVg5Y,8507
|
120
|
-
teuthology/task/ceph_ansible.py,sha256=Q39SNgawTf0_qShlSNukuqpwH5RG7cszO5XXtntEk8A,18230
|
121
|
-
teuthology/task/cephmetrics.py,sha256=rlg2CfVscDGrsmH1EadwJt40cbZyqPKWXrVqnsmRdlw,3299
|
122
|
-
teuthology/task/clock.py,sha256=MoZ06S5wKSh6uq2YaTL2p9nOi8BsIpjGuexmYc0wxvY,2889
|
123
|
-
teuthology/task/common_fs_utils.py,sha256=U3EkQn_k19Qd25xSsiF7FKzmot8ZQox_8V5s8tah1N0,3511
|
124
|
-
teuthology/task/console_log.py,sha256=7EL6EnPAHvqhMhAvVePuLrB6U7dYtN4SJpS4sQcd6PE,3571
|
125
|
-
teuthology/task/dump_ctx.py,sha256=xuygm6guySEhBNbO_YDCujGr0S5TjdH5tYdd7Bzc-_k,598
|
126
|
-
teuthology/task/exec.py,sha256=UFiT_riZMi-TSLiv8TEADmgGkC0_X3Qip_5qhvkMbqI,1720
|
127
|
-
teuthology/task/full_sequential.py,sha256=PtCeZ_T4ctdYJcw53QfBK4VTQLTuk9c2BIkypn0i9PE,995
|
128
|
-
teuthology/task/full_sequential_finally.py,sha256=C1sXt1n1JM4S6RChZu6pjahpsHAKVsJ0QeA0KXGb-Dc,1501
|
129
|
-
teuthology/task/hadoop.py,sha256=_gU9NLVFHEEHnVnn1QHO0Qy6WCXc87OEPq-ipc1lAHc,12817
|
130
|
-
teuthology/task/interactive.py,sha256=BRhp2vkm_2YcZTSn-oBjFto32-jJ9Edw0gWUPYfKVrM,974
|
131
|
-
teuthology/task/iscsi.py,sha256=jjAYmzmvbXkAzZ0XmBZwy6ZuImSDZGBlRsTtfkiwRvA,5580
|
132
|
-
teuthology/task/kernel.py,sha256=BBQyuO-Omd0XwKdv8b6_ZZwj3JHRD4OIynMil3T7sNM,49850
|
133
|
-
teuthology/task/knfsd.py,sha256=ZmCdqnE0oHp1T3bOLJerJjhx7FOlsGcKOWm2QgbKvf4,5395
|
134
|
-
teuthology/task/localdir.py,sha256=uFJ7nvQBgbe3oW2fmFFldwrGN8C8H5vhOPNGAmH2zyQ,1620
|
135
|
-
teuthology/task/lockfile.py,sha256=PAZBdXTgUTSjKnTvr11ztfcHMqmWJyuKX00XvAQX4K8,9004
|
136
|
-
teuthology/task/loop.py,sha256=lkIkyq2W9UF9tECjJIjue7UeBm6eNqfOkwoiTDE8Mno,1175
|
137
|
-
teuthology/task/mpi.py,sha256=mOu9EothQca4FaxYFjk-cl8ajADFvCB-PEB_8PPs_qQ,4449
|
138
|
-
teuthology/task/nfs.py,sha256=_CBXye-EjycfLGuWZKGvnv13Mdosl_aoR_mLb5XRS2M,4415
|
139
|
-
teuthology/task/nop.py,sha256=q4VyyPEs1mgZl3vtoMCMa2Ch4fxRZm6ERnEgZ3nC9EA,144
|
140
|
-
teuthology/task/parallel.py,sha256=w-v-d2NLFPV4vIuQ82hwngxh7yPb-82wvW5a2n4UuxA,2033
|
141
|
-
teuthology/task/parallel_example.py,sha256=aGmxQ2yklQQJ_63tNgm8xwbbk_2--zOHaSnKnbhBWgo,2461
|
142
|
-
teuthology/task/pcp.py,sha256=qzEC08PSpaE4O39vVLsNvWGQh6xR2hVYAevIWm3B8k4,10821
|
143
|
-
teuthology/task/pexec.py,sha256=oQIcVybe0yAtjtU--T-Zj9o2ZxcoqiBnA_FnMRsjW84,4250
|
144
|
-
teuthology/task/print.py,sha256=CDNGUKWIXkUvrg1abxVgYVSS2Eo_ZyVKx0bxIjPY-40,561
|
145
|
-
teuthology/task/proc_thrasher.py,sha256=Gc6YuUdpcA8RBYBCyCvgli3GCMbM6gBHWrpSA_Gaw1g,2404
|
146
|
-
teuthology/task/selinux.py,sha256=AyG70CqKR8_6ChxDTeYVQBg0V9GO-7ywWXebDkW6E08,7543
|
147
|
-
teuthology/task/sequential.py,sha256=fQHo7nAYN49H42pUweC6As2jHC6ar_OErLmlFMXUAMg,1344
|
148
|
-
teuthology/task/sleep.py,sha256=V-SBHuyhGJR3MgtdTELE8fMTBYr5DTHKdt8s2nyup2M,547
|
149
|
-
teuthology/task/ssh_keys.py,sha256=corqFK6jrXBs31eDV-UhyGNVgSCDLfH3AkML8lyfPhs,6562
|
150
|
-
teuthology/task/tasktest.py,sha256=yrhIPAK1rpAa3kzqHfvzdOyM8vxkoPvLA8UbyqBxA7Y,1477
|
151
|
-
teuthology/task/timer.py,sha256=EsRwXAVofdAez6mpP7TO5A7lCVQU2nAZ3mXS-oDYn3c,1260
|
152
|
-
teuthology/task/install/__init__.py,sha256=HXKJYr5cklkPPGdzXt18_E7MpD1Y6YccLJfkjZiMYis,20285
|
153
|
-
teuthology/task/install/deb.py,sha256=pSHlohUjvEjh_HK_RfTX_V2g1yXjhkdwU4H6ZNs0PXA,7441
|
154
|
-
teuthology/task/install/redhat.py,sha256=XVVS4BP3hy2q2URs9-d4fOwNO9K7nvnTlS1XT2oVuO4,7871
|
155
|
-
teuthology/task/install/rpm.py,sha256=blpeGagxV5JB-zYsiffhexOsaRGYXpqr5qaqGZqVFjA,15577
|
156
|
-
teuthology/task/install/util.py,sha256=4GkzTJqdXOPcz37ZKZCkKSZyxc3u6hXxycZMx-BmEb0,4154
|
157
|
-
teuthology/task/internal/__init__.py,sha256=cmnCiCPF-IAlaGtznrp2z5gdRq6l0kOFSdPWi6mmwlo,17545
|
158
|
-
teuthology/task/internal/check_lock.py,sha256=n6DpqdQhoqGBefpufekofYQ1sV_7dmR8m1abGahz50w,1188
|
159
|
-
teuthology/task/internal/git_ignore_ssl.py,sha256=GxYGFfP2_sBhQCRDd1cQ3ZRVQFu9ff46vYROF-F8FLw,489
|
160
|
-
teuthology/task/internal/lock_machines.py,sha256=T9rnUsptCrJ9lQYmONrHHaWilx7fd2_C_4uyLn0qVPo,1375
|
161
|
-
teuthology/task/internal/redhat.py,sha256=wOIGNaK6eePZZ1D-XTADTrIcHE-jGNWNjNvOCAcJJi8,8981
|
162
|
-
teuthology/task/internal/syslog.py,sha256=KeQnq7K9TeIiT_5u5WLWZlwXAO2JHlG0i7hU8JEH9xM,6107
|
163
|
-
teuthology/task/internal/vm_setup.py,sha256=cNlsBmVqXTYA6BgF5Sqd3k2eh87cnfuR1KdPUsOKskw,1825
|
164
|
-
teuthology/task/tests/__init__.py,sha256=o24Tl7teGYUc4SeTpcxI6SZyH3k6YOhOMpXnCGpMuAo,3723
|
165
|
-
teuthology/task/tests/test_locking.py,sha256=g2lkKkr8etr7dlCwSeIui61CAMzeGWtSgprf4ASkkk4,947
|
166
|
-
teuthology/task/tests/test_run.py,sha256=1C2GV5Vbs3urrd6RCzCUn5l8a-Dyb7XayOHuJtiQ5fw,1077
|
167
|
-
teuthology/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
168
|
-
teuthology/test/fake_archive.py,sha256=JHCVze6_8l8r8wkoDYVDdw7RYcIqWOv0W6fZ1o85qz4,3478
|
169
|
-
teuthology/test/fake_fs.py,sha256=0oMfI0lJvfN1VfLA-Z6ZCxuArNuAJggSE72MfQ6I-JM,3170
|
170
|
-
teuthology/test/test_config.py,sha256=SLEvvLW8pcLyq-4tqs9s3FHO6mEj_PlUYd0QF86JBbo,5997
|
171
|
-
teuthology/test/test_contextutil.py,sha256=gOYx3X6g98ApvgtRKa0aZdDRzeH-sJOnk_htwboTHpg,1989
|
172
|
-
teuthology/test/test_describe_tests.py,sha256=1ZIQ-tjyZ5yosGcn3qaEc4XReVD4zHuMF0Yqmg2eZmw,9764
|
173
|
-
teuthology/test/test_email_sleep_before_teardown.py,sha256=beLBNdB4XIKGGfV39MWDfCThQaTW3bF3CfOwukeKTMw,2699
|
174
|
-
teuthology/test/test_exit.py,sha256=KMDPSfPy8bUvqclFO9yxIz9QH4-sTrkf9aIDyrqUThc,3099
|
175
|
-
teuthology/test/test_get_distro.py,sha256=2swU4c9Z5mp31NR5b4vrOKbTm_9_R_GjFpMuQtopyJA,1349
|
176
|
-
teuthology/test/test_get_distro_version.py,sha256=MwoX-x0dn4jCFq6GjVQCq-o6NTK5fP_TUHaE_CQJJN8,1563
|
177
|
-
teuthology/test/test_get_multi_machine_types.py,sha256=pKPlJyHJr3h-yp6mpyeerLaBJ7KPgV4UUzQMFZe0W9s,762
|
178
|
-
teuthology/test/test_job_status.py,sha256=qb7SRP66J1zQlyiCtpeeWBMvAonrG-Ue8ru0GJ9PjUw,1853
|
179
|
-
teuthology/test/test_ls.py,sha256=XORL2g1IISdF64K3SvQTDHt5HUh8SmOig6VSeGUWBBU,1542
|
180
|
-
teuthology/test/test_misc.py,sha256=469ItUTu5LJSn0ZMC-zfnHfSJpji87GEl7H79gXuVYM,13531
|
181
|
-
teuthology/test/test_nuke.py,sha256=AMxitueULN_2AtqH5rHkIC9aVTY40TZ93ZTq111G2o4,9793
|
182
|
-
teuthology/test/test_packaging.py,sha256=kNgH3jPuY7gjg75_lHiJLNAcH-Q1QVdt1Q8R9JbcBKY,28228
|
183
|
-
teuthology/test/test_parallel.py,sha256=uHH10wYKDA3SXI1D1q6Wr7i9682FzKUC0M7gLZN_4Hc,771
|
184
|
-
teuthology/test/test_repo_utils.py,sha256=XieCSiaAbsbeNb5TNsqbpkQafoOXUS5eENGOJzhZ-nw,9075
|
185
|
-
teuthology/test/test_report.py,sha256=u7bnVtR1nv_ZkovsEtcSUgKZ6fBlnbmxHwsxYxsTOPk,2615
|
186
|
-
teuthology/test/test_results.py,sha256=NqwWo6hxZgMVTZu_Jd78iQmdoKWbGXtZozPk-CCdcrA,5290
|
187
|
-
teuthology/test/test_run.py,sha256=8DC7y2ej9VOtkclAbi_XF6P5JBQjanEYhzw3WJ8IYCQ,10451
|
188
|
-
teuthology/test/test_safepath.py,sha256=XaALVbwQoaHNCcy_lHPnrOVDmbyhQeXACd8KHW0iSQc,1409
|
189
|
-
teuthology/test/test_schedule.py,sha256=utunhYqPXHm5cwGAwPJl-Gi7sIS_wq2rotHJy-Bk1g0,1302
|
190
|
-
teuthology/test/test_scrape.py,sha256=nSFXBOLXRS73Bmqr-DxUE-jNJjXpUmfrzjAaGJdAjDc,5796
|
191
|
-
teuthology/test/test_timer.py,sha256=IPNA8QTXAHZnIyntW7DCSMTdo-CT7Asr1Vx-KEWkQVM,3287
|
192
|
-
teuthology/test/test_vps_os_vers_parameter_checking.py,sha256=Vn3XnXOZfY1NVsRgz9K0lD89xtGvydKJKbrjAXCuZMg,2861
|
193
|
-
teuthology/test/test_worker.py,sha256=QQRSiSAsLWVw4PdGkq3MiZLltudPy14dZm3r4WjJhEk,11295
|
194
|
-
teuthology/test/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
195
|
-
teuthology/test/integration/test_suite.py,sha256=oXb014eBY0qEs-ayjf0QI2vQDCT031fI86M383kuawA,3606
|
196
|
-
teuthology/test/task/__init__.py,sha256=o7mU5lZVN-kllvFAOq2x5KRiPyod9X46bYixyFM1zos,7038
|
197
|
-
teuthology/test/task/test_ansible.py,sha256=vcxjFssGB1TP7SjR7kssSqQ5kYFDDWKMrNNUfYCXZ94,21870
|
198
|
-
teuthology/test/task/test_ceph_ansible.py,sha256=N7YqjcmHxY8pGECLYLXV29j3WK1jmtDtbiCW6hpShTw,6072
|
199
|
-
teuthology/test/task/test_console_log.py,sha256=UmsVctkVdbamDAd8eQUXszLKSeuJrnIykAPxEVxPxpU,3189
|
200
|
-
teuthology/test/task/test_install.py,sha256=YePA8MThAqQssCGVTVStNv-vyI1vy9H_Efw4l_upmTw,12343
|
201
|
-
teuthology/test/task/test_internal.py,sha256=DadzLlHESqfrm1RiYMUgyhJXDduNhhJ6P1-Z2AO7Qic,2166
|
202
|
-
teuthology/test/task/test_kernel.py,sha256=-ZtETm-3Pl27eOrcBfc2ViFGmJ50UbcfzKZOlztbR-o,8486
|
203
|
-
teuthology/test/task/test_pcp.py,sha256=Z7L9JSGR6IqDfddA9SN8jX1Rd8XM6NpDHxOoSAnrEMs,13399
|
204
|
-
teuthology/test/task/test_selinux.py,sha256=jDkhdmNcZMsoNt17MV3-aufg_3K2qJqv8GMZSxGzoCI,1123
|
205
|
-
teuthology/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
206
|
-
teuthology/util/compat.py,sha256=3jWbf2QSMSwq2t5ZgoGZ7z0fk98sY489P7im8j6eoOU,458
|
207
|
-
teuthology/util/flock.py,sha256=iGliYoXBzaBdMCq6dSSSQOkXC3ByrIlxvdRtJaYOG4I,604
|
208
|
-
teuthology-1.1.0.dist-info/LICENSE,sha256=ghAkcYBW8nQm9oZJTob8w6h4Ga8ovjAv3boORc0qbYs,1057
|
209
|
-
teuthology-1.1.0.dist-info/METADATA,sha256=rvR6gLRkBbZjMp2gsr-mlSkipy4oZl6VtUmAhDr_0tg,2891
|
210
|
-
teuthology-1.1.0.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
211
|
-
teuthology-1.1.0.dist-info/entry_points.txt,sha256=XS5fnrqXgEKHiOdipCP9YTjrY8i0oX_nh6G3b_NI2j8,803
|
212
|
-
teuthology-1.1.0.dist-info/top_level.txt,sha256=h2iGdGnj97Y9V5XwADbLYyhjY4Fek6KMSxrvYVNnphQ,19
|
213
|
-
teuthology-1.1.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|