Mark tests needing TOML-writing library with a custom marker

This way they can be conveniently skipped with `pytest -m "not
tomlwrite"` in environments where such libraries aren't available.
This commit is contained in:
Karolina Surma 2025-06-13 14:57:40 +02:00 committed by Achilleas Koutsou
parent 516301c02b
commit 7390f91592
4 changed files with 8 additions and 0 deletions

View file

@ -4,6 +4,8 @@
import os
from tempfile import TemporaryDirectory
import pytest
from osbuild.util import toml
data_obj = {
@ -26,6 +28,7 @@ str = "test"
"""
@pytest.mark.tomlwrite
def test_write_read():
with TemporaryDirectory() as tmpdir:
path = os.path.join(tmpdir, "test.toml")