Skip to content
Snippets Groups Projects
Commit bc6e114e authored by Radoslav Bodó's avatar Radoslav Bodó
Browse files

tests: skip storage_drop_versions_many by default

parent d8417767
No related branches found
No related tags found
No related merge requests found
......@@ -14,5 +14,5 @@ code_quality:
- venv/bin/pip install -U pip
- venv/bin/pip install -r requirements.lock
script:
- . venv/bin/activate && make coverage
- . venv/bin/activate && PYTEST_SLOW=1 make coverage
- . venv/bin/activate && make lint
"""rwm storagemanager and bucket policing tests"""
import json
import os
from io import BytesIO
from pathlib import Path
......@@ -187,6 +188,7 @@ def test_storage_drop_versions(tmpworkdir: str, microceph: str, radosuser_admin:
assert len(object_versions) == 1
@pytest.mark.skipif('PYTEST_SLOW' not in os.environ, reason='slow on devnode, runs in CI')
def test_storage_drop_versions_many(tmpworkdir: str, microceph: str, radosuser_admin: rwm.StorageManager): # pylint: disable=unused-argument
"""test manager storage_drop_versions"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment