File: runtests.py

package info (click to toggle)
python-transliterate 1.10.2-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 812 kB
  • sloc: python: 1,973; makefile: 224; sh: 36
file content (14 lines) | stat: -rwxr-xr-x 194 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python
import os
import sys

import pytest


def main():
    sys.path.insert(0, os.path.abspath('src'))
    return pytest.main()


if __name__ == '__main__':
    sys.exit(main())