#131483 Report by node eib covering 2261 tests from 60 modules resulted into 5 errors

Report

ObsPy version
1.4.0
GitHub Pull Request
-
Report file
JSON document
Total runtime
454.6 sec
Report date/time
Nov. 25, 2022, 6:22 a.m.

System / Python

Architecture
64bit
Machine
x86_64
Node
eib
Processor
Python Compiler
GCC 10.2.1 20210110
Python Implementation
CPython
Python Version
3.9.2
Release
5.19.0-0.deb11.2-amd64
System
Linux
Version
#1 SMP PREEMPT_DYNAMIC Debian 5.19.11-1~bpo11+1 (2022-10-03)

Dependencies

cartopy
0.18.0
decorator
4.4.2
flake8
---
geographiclib
---
lxml
4.6.3
matplotlib
3.3.4
numpy
1.19.5
obspy
1.4.0
pyproj
3.0.0
pytest
6.0.2
pytest-json-report
1.5.0
requests
2.25.1
scipy
1.6.0
setuptools
52.0.0
shapefile
---
sqlalchemy
1.3.22

Modules (60)

Module Errors / Failures Tracebacks
obspy.clients Not tested -
obspy.clients.earthworm - -
obspy.clients.fdsn - -
obspy.clients.filesystem - -
obspy.clients.iris - -
obspy.clients.neic 5 1 2 3 4 5
obspy.clients.nrl - -
obspy.clients.seedlink - -
obspy.clients.syngine - -
obspy.core - -
obspy.core.event - -
obspy.core.inventory - -
obspy.core.util - -
obspy.geodetics - -
obspy.imaging - -
obspy.io.ah - -
obspy.io.alsep - -
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 5 5

Tracebacks (5)

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: timeout('timed out')
Traceback (most recent call last):
File "/usr/lib/python3.9/doctest.py", line 1336, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.clients.neic.client.Client[3]>", line 1, in <module>
File "/usr/local/lib/python3.9/dist-packages/obspy/clients/neic/client.py", line 123, in get_waveforms
return self.get_waveforms_nscl(seedname, starttime,
File "/usr/local/lib/python3.9/dist-packages/obspy/clients/neic/client.py", line 190, in get_waveforms_nscl
s.connect((self.host, self.port))
socket.timeout: timed out
/usr/local/lib/python3.9/dist-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: timeout('timed out')
Traceback (most recent call last):
File "/usr/lib/python3.9/doctest.py", line 1336, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.clients.neic.client.Client.get_waveforms[3]>", line 1, in <module>
File "/usr/local/lib/python3.9/dist-packages/obspy/clients/neic/client.py", line 123, in get_waveforms
return self.get_waveforms_nscl(seedname, starttime,
File "/usr/local/lib/python3.9/dist-packages/obspy/clients/neic/client.py", line 190, in get_waveforms_nscl
s.connect((self.host, self.port))
socket.timeout: timed out
/usr/local/lib/python3.9/dist-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: timeout('timed out')
Traceback (most recent call last):
File "/usr/lib/python3.9/doctest.py", line 1336, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.clients.neic.client.Client.get_waveforms_nscl[4]>", line 1, in <module>
File "/usr/local/lib/python3.9/dist-packages/obspy/clients/neic/client.py", line 190, in get_waveforms_nscl
s.connect((self.host, self.port))
socket.timeout: timed out
/usr/local/lib/python3.9/dist-packages/obspy/clients/neic/client.py:159: UnexpectedException
Traceback (most recent call last):
File "/usr/local/lib/python3.9/dist-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 "/usr/local/lib/python3.9/dist-packages/obspy/clients/neic/client.py", line 190, in get_waveforms_nscl
s.connect((self.host, self.port))
socket.timeout: timed out
Traceback (most recent call last):
File "/usr/local/lib/python3.9/dist-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 "/usr/local/lib/python3.9/dist-packages/obspy/clients/neic/client.py", line 190, in get_waveforms_nscl
s.connect((self.host, self.port))
socket.timeout: timed out

Skipped tests (31)

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.gcf io/gcf/core.py::obspy.io.gcf.core._write_gcf 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
16.121s clients/fdsn/tests/test_eidaws_routing_client.py::EIDAWSRoutingClientTestCase::test_get_waveforms_integration_test
15.602s clients/fdsn/tests/test_client.py::ClientTestCase::test_dataselect_bulk
9.157s clients/syngine/tests/test_client.py::ClientTestCase::test_get_available_models
8.722s clients/fdsn/tests/test_client.py::ClientTestCase::test_irisph5_event
8.190s clients/fdsn/tests/test_client.py::ClientTestCase::test_iris_example_queries_dataselect_discover_services_false
7.558s core/tests/test_event.py::TestEvent::test_plot_farfield_without_quiver_with_maps
7.451s clients/fdsn/tests/test_client.py::ClientTestCase::test_redirection_auth
7.304s clients/iris/tests/test_client.py::ClientTestCase::test_resp
7.175s clients/iris/tests/test_client.py::ClientTestCase::test_evalresp
7.152s clients/fdsn/tests/test_client.py::ClientTestCase::test_iris_example_queries_dataselect
6.519s clients/syngine/tests/test_client.py::ClientTestCase::test_get_waveforms
6.459s clients/fdsn/tests/test_client.py::ClientTestCase::test_redirection
6.031s clients/fdsn/tests/test_eidaws_routing_client.py::EIDAWSRoutingClientTestCase::test_get_stations_integration_test
5.516s clients/nrl/client.py::obspy.clients.nrl.client.NRL.get_response
5.284s clients/syngine/__init__.py::obspy.clients.syngine
5.093s clients/iris/tests/test_client.py::ClientTestCase::test_flinnengdahl
4.588s taup/tests/test_seismic_phase.py::TestTauPySeismicPhase::test_shoot_existing_ray_param
4.400s clients/fdsn/tests/test_federator_routing_client.py::FederatorRoutingClientTestCase::test_get_waveforms_integration_test
4.345s clients/fdsn/client.py::obspy.clients.fdsn.client.Client.get_waveforms_bulk
3.987s taup/__init__.py::obspy.taup