debian-python-raven/runtests.py

13 lines
144 B
Python

#!/usr/bin/env python
def runtests():
import sys
import pytest
pytest.main(sys.argv)
if __name__ == '__main__':
runtests()