initial commit

This commit is contained in:
2026-01-17 21:51:34 -05:00
commit 06a449b44e
90 changed files with 24094 additions and 0 deletions

10
deps/inkex/tester/decorators.py vendored Normal file
View File

@@ -0,0 +1,10 @@
"""
Useful decorators for tests.
"""
import pytest
from inkex.command import is_inkscape_available
requires_inkscape = pytest.mark.skipif( # pylint: disable=invalid-name
not is_inkscape_available(), reason="Test requires inkscape, but it's not available"
)