Skip to content

Commit edf0f1f

Browse files
committed
Patch unit tests by updating OTIO_PLUGIN_MANIFEST_PATH env var
Signed-off-by: Doug Halley <[email protected]>
1 parent 031b1e5 commit edf0f1f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ license = { file="LICENSE" }
1515
readme = "README.md"
1616
requires-python = ">=3.7"
1717
dependencies = [
18-
"opentimelineio >= 0.15.0"
18+
"opentimelineio >= 0.17.0.dev1"
1919
]
2020

2121
classifiers = [

tests/test_svg_adapter.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010

1111
import opentimelineio as otio
1212

13+
os.environ['OTIO_PLUGIN_MANIFEST_PATH'] = os.pathsep.join(
14+
["$OTIO_PLUGIN_MANIFEST_PATH", "../src/otio_svg_adapter/plugin_manifest.json"]
15+
)
16+
1317
SAMPLE_DATA_DIR = os.path.join(os.path.dirname(__file__), "sample_data")
1418
SIMPLE_CUT_OTIO_PATH = os.path.join(SAMPLE_DATA_DIR, 'simple_cut.otio')
1519
SIMPLE_CUT_SVG_PATH = os.path.join(SAMPLE_DATA_DIR, 'simple_cut.svg')

0 commit comments

Comments
 (0)