#!/usr/bin/env python
import os
import subprocess

script_dir = os.path.dirname(os.path.realpath(__file__))

subprocess.check_call([script_dir + '/verify'])
subprocess.check_call([script_dir + '/test'])
subprocess.check_call([script_dir + '/bdist'])
