#!/usr/bin/env python

import sys
from pathlib import Path

# This script is for acceptance test.
# This script works 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_root = Path(__file__).resolve().parent.parent
    sys.path.append(str(vint_root))

    import vint

    sys.exit(vint.main())
