summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/tools/pytest/doc/en/_getdoctarget.py
blob: 20e487bb73867811c2a7c14d30b14431d52028f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python

import py

def get_version_string():
    fn = py.path.local(__file__).join("..", "..", "..",
                                      "_pytest", "__init__.py")
    for line in fn.readlines():
        if "version" in line and not line.strip().startswith('#'):
            return eval(line.split("=")[-1])

def get_minor_version_string():
    return ".".join(get_version_string().split(".")[:2])

if __name__ == "__main__":
    print (get_minor_version_string())