summaryrefslogtreecommitdiff
path: root/testsuite/overrides_hack.py
blob: 9094cfaa9bb6c77c4301a61a9c8acbdfc8828d03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import os
import gi.overrides

try:
    import mesonconfig
except ImportError:
    mesonconfig = None
    pass

FILE = os.path.realpath(__file__)
if not gi.overrides.__path__[0].endswith("gst-python/gi/overrides"):
    local_overrides = None
    # our overrides don't take precedence, let's fix it
    for i, path in enumerate(gi.overrides.__path__):
        if path.endswith("gst-python/gi/overrides"):
            local_overrides = path

    if local_overrides:
        gi.overrides.__path__.remove(local_overrides)
    else:
        local_overrides = os.path.abspath(os.path.join(FILE, "../", "../", "gi", "overrides"))

    gi.overrides.__path__.insert(0, local_overrides)

if mesonconfig:
    gi.overrides.__path__.insert(0, os.path.abspath(os.path.join(mesonconfig.path, "gi", "overrides")))
# Execute previously set sitecustomize.py script if it existed
if os.environ.get("GST_ENV"):
    old_sitecustomize = os.path.join(os.path.dirname(__file__),
                                    "old.sitecustomize.gstuninstalled.py")
    if os.path.exists(old_sitecustomize):
        exec(compile(open(old_sitecustomize).read(), old_sitecustomize, 'exec'))