Skip to content

Commit

Permalink
define deprecated modules in runtests
Browse files Browse the repository at this point in the history
  • Loading branch information
barsch committed Mar 18, 2021
1 parent f250011 commit 7266e35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion obspy/scripts/runtests.py
Original file line number Diff line number Diff line change
@@ -108,6 +108,7 @@
from obspy.core.util.version import get_git_version


DEPRECATED_MODULES = ['clients.arclink', 'clients.seishub', 'db']
HARD_DEPENDENCIES = [
"numpy", "scipy", "matplotlib", "lxml.etree", "setuptools",
"sqlalchemy", "decorator", "requests"]
@@ -148,7 +149,7 @@ def _get_suites(verbosity=1, names=[]):
status = True
import_failures = {}
for name in names:
if name == 'clients.arclink':
if name in DEPRECATED_MODULES:
continue
suite = []
if name in ALL_MODULES:

0 comments on commit 7266e35

Please sign in to comment.