#128525 Report by node mother covering 2222 tests from 61 modules resulted into 7 errors

Report

ObsPy version
1.3.1
GitHub Pull Request
-
Report file
JSON document
Total runtime
369.2 sec
Report date/time
Oct. 14, 2022, 6:24 a.m.

System / Python

Architecture
64bit
Machine
x86_64
Node
mother
Processor
Python Compiler
GCC 10.3.0
Python Implementation
CPython
Python Version
3.10.5
Release
5.10.0-17-amd64
System
Linux
Version
#1 SMP Debian 5.10.136-1 (2022-08-13)

Dependencies

cartopy
0.20.2
decorator
5.1.1
flake8
---
geographiclib
---
lxml
4.8.0
matplotlib
3.5.3
numpy
1.23.2
obspy
1.3.1
pyproj
3.3.1
pytest
7.1.2
pytest-json-report
1.5.0
requests
2.28.1
scipy
1.9.0
setuptools
65.0.2
shapefile
---
sqlalchemy
1.4.40

Modules (61)

Module Errors / Failures Tracebacks
obspy.clients Not tested -
obspy.clients.earthworm - -
obspy.clients.fdsn 2 1 2
obspy.clients.filesystem - -
obspy.clients.iris - -
obspy.clients.neic 5 3 4 5 6 7
obspy.clients.nrl - -
obspy.clients.seedlink - -
obspy.clients.seishub Not tested -
obspy.clients.syngine - -
obspy.core - -
obspy.core.event - -
obspy.core.inventory - -
obspy.core.util - -
obspy.db Not tested -
obspy.geodetics - -
obspy.imaging - -
obspy.io.ah - -
obspy.io.arclink - -
obspy.io.ascii - -
obspy.io.cmtsolution - -
obspy.io.cnv - -
obspy.io.css - -
obspy.io.dmx - -
obspy.io.focmec - -
obspy.io.gcf - -
obspy.io.gse2 - -
obspy.io.hypodd - -
obspy.io.iaspei - -
obspy.io.json - -
obspy.io.kinemetrics - -
obspy.io.kml - -
obspy.io.mseed - -
obspy.io.ndk - -
obspy.io.nied - -
obspy.io.nlloc - -
obspy.io.nordic - -
obspy.io.pdas - -
obspy.io.pde - -
obspy.io.quakeml - -
obspy.io.reftek - -
obspy.io.rg16 - -
obspy.io.sac - -
obspy.io.scardec - -
obspy.io.seg2 - -
obspy.io.segy - -
obspy.io.seisan - -
obspy.io.seiscomp - -
obspy.io.sh - -
obspy.io.shapefile - -
obspy.io.stationtxt - -
obspy.io.stationxml - -
obspy.io.wav - -
obspy.io.win - -
obspy.io.xseed - -
obspy.io.y - -
obspy.io.zmap - -
obspy.realtime - -
obspy.scripts - -
obspy.signal - -
obspy.taup - -
Summary 7 7

Tracebacks (7)

Traceback (most recent call last):
File "/home/megies/miniconda3/envs/default/lib/python3.10/site-packages/obspy/clients/fdsn/tests/test_client.py", line 865, in test_help_function_with_iris
self.assertTrue(got[-2].startswith('Available catalogs:'))
File "/home/megies/miniconda3/envs/default/lib/python3.10/unittest/case.py", line 687, in assertTrue
raise self.failureException(msg)
AssertionError: False is not true
Traceback (most recent call last):
File "/home/megies/miniconda3/envs/default/lib/python3.10/site-packages/obspy/clients/fdsn/tests/test_client.py", line 415, in test_iris_event_catalog_availability
self.assertEqual(set(self.client.services["available_event_catalogs"]),
File "/home/megies/miniconda3/envs/default/lib/python3.10/unittest/case.py", line 845, in assertEqual
assertion_func(first, second, msg=msg)
File "/home/megies/miniconda3/envs/default/lib/python3.10/unittest/case.py", line 1105, in assertSetEqual
self.fail(self._formatMessage(msg, standardMsg))
File "/home/megies/miniconda3/envs/default/lib/python3.10/unittest/case.py", line 675, in fail
raise self.failureException(msg)
AssertionError: Items in the first set but not the second:
'GCMT\n '
'ISC\n '
'NEIC PDE\n '
Items in the second set but not the first:
'NEIC PDE'
'GCMT'
'ISC'
032 (default is ``30``)
033 :type debug: bool, optional
034 :param debug: if ``True``, print debug information (default is ``False``)
035
036 .. rubric:: Example
037
038 >>> from obspy.clients.neic import Client
039 >>> client = Client()
040 >>> t = UTCDateTime() - 5 * 3600 # 5 hours before now
041 >>> st = client.get_waveforms("IU", "ANMO", "00", "BH?", t, t + 10)
UNEXPECTED EXCEPTION: TimeoutError('timed out')
Traceback (most recent call last):
File "/home/megies/miniconda3/envs/default/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.clients.neic.client.Client[3]>", line 1, in <module>
File "/home/megies/miniconda3/envs/default/lib/python3.10/site-packages/obspy/clients/neic/client.py", line 123, in get_waveforms
return self.get_waveforms_nscl(seedname, starttime,
File "/home/megies/miniconda3/envs/default/lib/python3.10/site-packages/obspy/clients/neic/client.py", line 190, in get_waveforms_nscl
s.connect((self.host, self.port))
TimeoutError: timed out
/home/megies/miniconda3/envs/default/lib/python3.10/site-packages/obspy/clients/neic/client.py:41: UnexpectedException
099 :param endtime: End date and time.
100 :rtype: :class:`~obspy.core.stream.Stream`
101 :returns: Stream object with requested data
102
103 .. rubric:: Example
104
105 >>> from obspy.clients.neic import Client
106 >>> client = Client()
107 >>> t = UTCDateTime() - 5 * 3600 # 5 hours before now
108 >>> st = client.get_waveforms("IU", "ANMO", "0?", "BH?", t, t + 10)
UNEXPECTED EXCEPTION: TimeoutError('timed out')
Traceback (most recent call last):
File "/home/megies/miniconda3/envs/default/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.clients.neic.client.Client.get_waveforms[3]>", line 1, in <module>
File "/home/megies/miniconda3/envs/default/lib/python3.10/site-packages/obspy/clients/neic/client.py", line 123, in get_waveforms
return self.get_waveforms_nscl(seedname, starttime,
File "/home/megies/miniconda3/envs/default/lib/python3.10/site-packages/obspy/clients/neic/client.py", line 190, in get_waveforms_nscl
s.connect((self.host, self.port))
TimeoutError: timed out
/home/megies/miniconda3/envs/default/lib/python3.10/site-packages/obspy/clients/neic/client.py:108: UnexpectedException
150 :rtype: :class:`~obspy.core.stream.Stream`
151 :returns: Stream object with requested data
152
153 .. rubric:: Example
154
155 >>> from obspy.clients.neic import Client
156 >>> from obspy import UTCDateTime
157 >>> client = Client()
158 >>> t = UTCDateTime() - 5 * 3600 # 5 hours before now
159 >>> st = client.get_waveforms_nscl("IUANMO BH.00", t, 10)
UNEXPECTED EXCEPTION: TimeoutError('timed out')
Traceback (most recent call last):
File "/home/megies/miniconda3/envs/default/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.clients.neic.client.Client.get_waveforms_nscl[4]>", line 1, in <module>
File "/home/megies/miniconda3/envs/default/lib/python3.10/site-packages/obspy/clients/neic/client.py", line 190, in get_waveforms_nscl
s.connect((self.host, self.port))
TimeoutError: timed out
/home/megies/miniconda3/envs/default/lib/python3.10/site-packages/obspy/clients/neic/client.py:159: UnexpectedException
Traceback (most recent call last):
File "/home/megies/miniconda3/envs/default/lib/python3.10/site-packages/obspy/clients/neic/tests/test_client.py", line 32, in test_get_waveform
st = client.get_waveforms_nscl("IUANMO BH.00", t, duration)
File "/home/megies/miniconda3/envs/default/lib/python3.10/site-packages/obspy/clients/neic/client.py", line 190, in get_waveforms_nscl
s.connect((self.host, self.port))
TimeoutError: timed out
Traceback (most recent call last):
File "/home/megies/miniconda3/envs/default/lib/python3.10/site-packages/obspy/clients/neic/tests/test_client.py", line 54, in test_get_waveform_nscl
st = client.get_waveforms_nscl("IUANMO BH.00", t, duration_long)
File "/home/megies/miniconda3/envs/default/lib/python3.10/site-packages/obspy/clients/neic/client.py", line 190, in get_waveforms_nscl
s.connect((self.host, self.port))
TimeoutError: timed out

Skipped tests (30)

Submodule Test Skip message
clients.fdsn clients/fdsn/tests/test_client.py::ClientTestCase::test_eida_token_resolution Skipped: Token is expired
clients.fdsn clients/fdsn/tests/test_client.py::ClientTestCase::test_trim_stream_after_get_waveform Skipped: data no longer available
clients.seedlink clients/seedlink/tests/test_slclient.py::SLClientTestCase::test_info Skipped: test must be started manually
clients.seedlink clients/seedlink/tests/test_slclient.py::SLClientTestCase::test_issue708 Skipped: test must be started manually
clients.seedlink clients/seedlink/tests/test_slclient.py::SLClientTestCase::test_time_window Skipped: test must be started manually
core core/stream.py::obspy.core.stream._is_pickle Skipped: all tests skipped by +SKIP option
core.util core/util/misc.py::obspy.core.util.misc.CatchOutput Skipped: all tests skipped by +SKIP option
core.util core/util/misc.py::obspy.core.util.misc.SuppressOutput Skipped: all tests skipped by +SKIP option
core.util core/util/misc.py::obspy.core.util.misc.TemporaryWorkingDirectory Skipped: all tests skipped by +SKIP option
geodetics geodetics/tests/test_util_geodetics.py::TestUtilGeodetics::test_gps_2_dist_azimuth_with_geographiclib Skipped: Module geographiclib is not installed
geodetics geodetics/tests/test_util_geodetics.py::TestUtilGeodetics::test_issue_375 Skipped: Module geographiclib is not installed
imaging imaging/tests/test_mopad_script.py::TestMopad::test_script_plot Skipped: Currently broken until further review.
io.ascii io/ascii/core.py::obspy.io.ascii.core._is_slist Skipped: all tests skipped by +SKIP option
io.ascii io/ascii/core.py::obspy.io.ascii.core._is_tspair Skipped: all tests skipped by +SKIP option
io.nordic io/nordic/utils.py::obspy.io.nordic.utils._evmagtonor Skipped: all tests skipped by +SKIP option
io.nordic io/nordic/utils.py::obspy.io.nordic.utils._nortoevmag Skipped: all tests skipped by +SKIP option
io.pde io/pde/mchedr.py::obspy.io.pde.mchedr._is_mchedr Skipped: all tests skipped by +SKIP option
io.quakeml io/quakeml/core.py::obspy.io.quakeml.core._is_quakeml Skipped: all tests skipped by +SKIP option
io.seisan io/seisan/core.py::obspy.io.seisan.core._is_seisan Skipped: all tests skipped by +SKIP option
io.sh io/sh/core.py::obspy.io.sh.core._is_asc Skipped: all tests skipped by +SKIP option
io.sh io/sh/core.py::obspy.io.sh.core._is_q Skipped: all tests skipped by +SKIP option
io.wav io/wav/core.py::obspy.io.wav.core._is_wav Skipped: all tests skipped by +SKIP option
io.y io/y/core.py::obspy.io.y.core._is_y Skipped: all tests skipped by +SKIP option
signal signal/quality_control.py::obspy.signal.quality_control.MSEEDMetadata Skipped: all tests skipped by +SKIP option
taup taup/tests/test_ray_paths.py::TestRayPathCalculations::test_compute_ray_paths Skipped: test needs geographiclib >= 1.34
taup taup/tests/test_tau.py::TestTauPyModel::test_p_iasp91_geo_manual Skipped: Module geographiclib is not installed
taup taup/tests/test_tau.py::TestTauPyModel::test_pierce_p_iasp91_geo Skipped: test needs geographiclib >= 1.34
taup taup/tests/test_tau.py::TestTauPyModel::test_single_path_geo_iasp91 Skipped: test needs geographiclib >= 1.34
taup taup/tests/test_taup_geo.py::TestTaupGeo::test_path_geo Skipped: Module geographiclib is not installed or too old.
taup taup/tests/test_taup_geo.py::TestTaupGeo::test_path_resampling Skipped: Module geographiclib is not installed or too old.

Slowest tests (20)

Runtime Test
11.582s clients/fdsn/tests/test_client.py::ClientTestCase::test_dataselect_bulk
9.360s clients/fdsn/tests/test_client.py::ClientTestCase::test_irisph5_event
8.931s clients/syngine/tests/test_client.py::ClientTestCase::test_get_available_models
8.658s clients/fdsn/tests/test_eidaws_routing_client.py::EIDAWSRoutingClientTestCase::test_get_waveforms_integration_test
7.632s clients/fdsn/tests/test_client.py::ClientTestCase::test_iris_example_queries_dataselect
6.939s clients/fdsn/tests/test_client.py::ClientTestCase::test_iris_example_queries_dataselect_discover_services_false
6.719s clients/iris/tests/test_client.py::ClientTestCase::test_evalresp
6.464s clients/iris/tests/test_client.py::ClientTestCase::test_resp
6.184s clients/syngine/tests/test_client.py::ClientTestCase::test_get_waveforms
6.073s clients/fdsn/tests/test_client.py::ClientTestCase::test_redirection_auth
5.642s clients/fdsn/client.py::obspy.clients.fdsn.client.Client.get_waveforms_bulk
5.326s clients/nrl/client.py::obspy.clients.nrl.client.NRL.get_response
5.303s clients/fdsn/tests/test_client.py::ClientTestCase::test_redirection
4.839s clients/iris/tests/test_client.py::ClientTestCase::test_flinnengdahl
4.644s clients/syngine/__init__.py::obspy.clients.syngine
4.140s clients/fdsn/client.py::obspy.clients.fdsn.client.Client.get_waveforms
4.071s core/tests/test_event.py::TestEvent::test_plot_farfield_without_quiver_with_maps
3.459s taup/__init__.py::obspy.taup
3.366s clients/fdsn/__init__.py::obspy.clients.fdsn
3.057s clients/earthworm/__init__.py::obspy.clients.earthworm

Warnings (3)

Stage Filename Category Message
runtest <doctest obspy.clients.nrl.client.NRL.get_response[0]>:1 ObsPyDeprecationWarning DEPRECATED Direct access to online NRL is deprecated as it will stop working when the original NRLv1 gets taken offline (Spring 2023), please consider working locally with a downloaded full copy of the old NRLv1 or new NRLv2 following instructions on the `NRL landing page <https://ds.iris.edu/ds/nrl/>`_.
runtest <doctest obspy.clients.nrl[1]>:1 ObsPyDeprecationWarning DEPRECATED Direct access to online NRL is deprecated as it will stop working when the original NRLv1 gets taken offline (Spring 2023), please consider working locally with a downloaded full copy of the old NRLv1 or new NRLv2 following instructions on the `NRL landing page <https://ds.iris.edu/ds/nrl/>`_.
runtest /home/megies/miniconda3/envs/default/lib/python3.10/site-packages/obspy/clients/nrl/tests/test_nrl.py:21 ObsPyDeprecationWarning DEPRECATED Direct access to online NRL is deprecated as it will stop working when the original NRLv1 gets taken offline (Spring 2023), please consider working locally with a downloaded full copy of the old NRLv1 or new NRLv2 following instructions on the `NRL landing page <https://ds.iris.edu/ds/nrl/>`_.