#!/usr/bin/env python

import sys
from pathlib import Path

# This is a script for acceptance test.
# This script work similarly to the script generated by pip.
#
# You can use py.test or default unittest module by the following steps:
#
#   $ cd path/to/vint
#   $ export PATH="./bin:$PATH"
#   $ py.test
#
# or
#
#   $ python -m unittest discover test

if __name__ == '__main__':
    vint_dir = Path(__file__).resolve().parent.parent

    sys.path.append(str(vint_dir))
    import vint

    vint.main()
