1"""
2Helper script to run or debug the tests in an IDE as a simple .py file.
3"""
4
5import py
6
7#args_str = ""
8args_str = "-k hinet --maxfail 1 -s --tb native"
9#args_str = "--maxfail 1 --tb native"
10
11py.test.cmdline.main(args_str.split(" "))
12