(self)
| 68 | user_options = [] |
| 69 | |
| 70 | def run(self): |
| 71 | import subprocess |
| 72 | import sys |
| 73 | errno = subprocess.call([sys.executable, '-m', 'pytest', 'tests']) |
| 74 | raise SystemExit(errno) |
| 75 | |
| 76 | |
| 77 | tests_require = install_requires + ['pytest', 'gunicorn'] |
no outgoing calls