mirror of
https://github.com/ceph/ceph
synced 2025-02-24 19:47:44 +00:00
Merge pull request #35012 from tchaikov/wip-45147
qa/tasks/mgr: skip test_diskprediction_local on python>=3.8 Reviewed-by: Yuri Weinstein <yuriw@redhat.com> Reviewed-by: Josh Durgin <jdurgin@redhat.com>
This commit is contained in:
commit
b01b58c45f
@ -3,6 +3,8 @@ import time
|
||||
import requests
|
||||
import errno
|
||||
import logging
|
||||
import sys
|
||||
|
||||
from teuthology.exceptions import CommandFailedError
|
||||
|
||||
from .mgr_test_case import MgrTestCase
|
||||
@ -50,6 +52,10 @@ class TestModuleSelftest(MgrTestCase):
|
||||
self._selftest_plugin("influx")
|
||||
|
||||
def test_diskprediction_local(self):
|
||||
if sys.version_info >= (3, 8):
|
||||
# https://tracker.ceph.com/issues/45147
|
||||
python_version = f'python {sys.version_info.major}.{sys.version_info.minor}'
|
||||
self.skipTest(f'{python_version} not compatible with diskprediction_local')
|
||||
self._selftest_plugin("diskprediction_local")
|
||||
|
||||
# Not included in qa/packages/packages.yaml
|
||||
|
Loading…
Reference in New Issue
Block a user