forked from obspy/obspy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruntests.py
More file actions
22 lines (17 loc) · 718 Bytes
/
runtests.py
File metadata and controls
22 lines (17 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
A command-line program that runs all ObsPy tests.
For documentation see file obspy/scripts/runtests.py.
"""
from __future__ import (absolute_import, division, print_function,
unicode_literals)
from future.builtins import * # NOQA @UnusedWildImport
import sys
from obspy.scripts.runtests import main
if __name__ == "__main__":
# It is not possible to add the code of main directly to here.
# This script is automatically installed with name obspy-runtests by
# setup.py to the Scripts or bin directory of your Python distribution
# setup.py needs a function to which it's scripts can be linked.
main(argv=sys.argv[1:])