aboutsummaryrefslogtreecommitdiff
path: root/Tests/varLib/instancer/conftest.py
blob: 0ac8091dfcab3a679abed36df408c62af02a7045 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import os
from fontTools import ttLib
import pytest


TESTDATA = os.path.join(os.path.dirname(__file__), "data")


@pytest.fixture
def varfont():
    f = ttLib.TTFont()
    f.importXML(os.path.join(TESTDATA, "PartialInstancerTest-VF.ttx"))
    return f