#124182 Report by node gh-actions covering 2012 tests from 59 modules resulted into 8 errors

Report

ObsPy version
1.3.0.post0+107.g5ea5708eed
GitHub Pull Request
https://github.com/obspy/obspy/pull/3055
Report file
JSON document
Total runtime
319.4 sec
Report date/time
May 17, 2022, 4:40 p.m.

System / Python

Architecture
64bit
Machine
AMD64
Node
gh-actions
Processor
Intel64 Family 6 Model 85 Stepping 7, GenuineIntel
Python Compiler
MSC v.1929 64 bit (AMD64)
Python Implementation
CPython
Python Version
3.9.12
Release
10
System
Windows
Version
10.0.20348

Dependencies

cartopy
0.20.2
decorator
5.1.1
flake8
---
geographiclib
2.0
lxml
4.8.0
matplotlib
3.5.2
numpy
1.22.3
obspy
1.3.0.post0+107.g5ea5708eed
pyproj
3.3.1
pytest
7.1.2
pytest-json-report
1.5.0
requests
2.27.1
scipy
1.8.0
setuptools
62.3.1
shapefile
---
sqlalchemy
1.4.36

Modules (59)

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

Tracebacks (8)

Traceback (most recent call last):
File "d:\a\obspy\obspy\obspy\core\tests\test_waveform_plugins.py", line 98, in test_read_and_write
st = read(outfile)
File "C:\Miniconda3\envs\test\lib\site-packages\decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "d:\a\obspy\obspy\obspy\core\util\decorator.py", line 291, in _map_example_filename
return func(*args, **kwargs)
File "d:\a\obspy\obspy\obspy\core\stream.py", line 208, in read
st = _generic_reader(pathname_or_url, _read, **kwargs)
File "d:\a\obspy\obspy\obspy\core\util\base.py", line 657, in _generic_reader
generic = callback_func(pathnames[0], **kwargs)
File "C:\Miniconda3\envs\test\lib\site-packages\decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "d:\a\obspy\obspy\obspy\core\util\decorator.py", line 202, in uncompress_file
result = func(filename, *args, **kwargs)
File "d:\a\obspy\obspy\obspy\core\stream.py", line 249, in _read
stream, format = _read_from_plugin('waveform', filename, format=format,
File "d:\a\obspy\obspy\obspy\core\util\base.py", line 422, in _read_from_plugin
list_obj = read_format(filename, **kwargs)
File "d:\a\obspy\obspy\obspy\io\segy\core.py", line 172, in _read_segy
segy_object = _read_segyrev1(
File "d:\a\obspy\obspy\obspy\io\segy\segy.py", line 945, in _read_segy
return _internal_read_segy(
File "d:\a\obspy\obspy\obspy\io\segy\segy.py", line 980, in _internal_read_segy
return SEGYFile(file, endian=endian,
File "d:\a\obspy\obspy\obspy\io\segy\segy.py", line 136, in __init__
self._read_headers()
File "d:\a\obspy\obspy\obspy\io\segy\segy.py", line 240, in _read_headers
raise NotImplementedError(msg)
NotImplementedError: Extended textual headers are not yet supported. Please contact the developers.
018 -------
019 Similar to reading any other waveform data format using :mod:`obspy.core`
020 The format will be determined automatically.
021
022 >>> from obspy import read
023 >>> st = read("/path/to/20160603_1955n.gcf")
024
025 GCF specific metadata is stored in ``stats.gcf``
026
027 >>> for k, v in sorted(st[0].stats.gcf.items()):
Differences (unified diff with -expected +actual):
@@ -1,4 +1,4 @@
'FIC': -49378
-'RIC': -49312
+'RIC': -49489
'blk': 0
'digi': 0
d:\a\obspy\obspy\obspy\io\gcf\__init__.py:27: DocTestFailure
Traceback (most recent call last):
File "d:\a\obspy\obspy\obspy\io\gcf\tests\test_core.py", line 114, in test_read_channel_prefix_via_obspy
self.assertEqual(st[0].stats.endtime,
File "C:\Miniconda3\envs\test\lib\unittest\case.py", line 837, in assertEqual
assertion_func(first, second, msg=msg)
File "C:\Miniconda3\envs\test\lib\unittest\case.py", line 830, in _baseAssertEqual
raise self.failureException(msg)
AssertionError: UTCDateTime(2016, 6, 3, 19, 55, 1, 990000) != UTCDateTime(2016, 6, 3, 19, 55, 2, 990000)
Traceback (most recent call last):
File "d:\a\obspy\obspy\obspy\io\gcf\tests\test_core.py", line 97, in test_read_head_via_module
self.assertEqual(st[0].stats.endtime,
File "C:\Miniconda3\envs\test\lib\unittest\case.py", line 837, in assertEqual
assertion_func(first, second, msg=msg)
File "C:\Miniconda3\envs\test\lib\unittest\case.py", line 830, in _baseAssertEqual
raise self.failureException(msg)
AssertionError: UTCDateTime(2016, 6, 3, 19, 55, 1, 990000) != UTCDateTime(2016, 6, 3, 19, 55, 2, 990000)
Traceback (most recent call last):
File "d:\a\obspy\obspy\obspy\io\gcf\tests\test_core.py", line 61, in test_read_head_via_obspy
self.assertEqual(st[0].stats.endtime,
File "C:\Miniconda3\envs\test\lib\unittest\case.py", line 837, in assertEqual
assertion_func(first, second, msg=msg)
File "C:\Miniconda3\envs\test\lib\unittest\case.py", line 830, in _baseAssertEqual
raise self.failureException(msg)
AssertionError: UTCDateTime(2016, 6, 3, 19, 55, 1, 990000) != UTCDateTime(2016, 6, 3, 19, 55, 2, 990000)
Traceback (most recent call last):
File "d:\a\obspy\obspy\obspy\io\gcf\tests\test_core.py", line 79, in test_read_via_module
self.assertEqual(st[0].stats.endtime,
File "C:\Miniconda3\envs\test\lib\unittest\case.py", line 837, in assertEqual
assertion_func(first, second, msg=msg)
File "C:\Miniconda3\envs\test\lib\unittest\case.py", line 830, in _baseAssertEqual
raise self.failureException(msg)
AssertionError: UTCDateTime(2016, 6, 3, 19, 55, 1, 990000) != UTCDateTime(2016, 6, 3, 19, 55, 2, 990000)
Traceback (most recent call last):
File "d:\a\obspy\obspy\obspy\io\gcf\tests\test_core.py", line 43, in test_read_via_obspy
self.assertEqual(st[0].stats.endtime,
File "C:\Miniconda3\envs\test\lib\unittest\case.py", line 837, in assertEqual
assertion_func(first, second, msg=msg)
File "C:\Miniconda3\envs\test\lib\unittest\case.py", line 830, in _baseAssertEqual
raise self.failureException(msg)
AssertionError: UTCDateTime(2016, 6, 3, 19, 55, 1, 990000) != UTCDateTime(2016, 6, 3, 19, 55, 2, 990000)
Traceback (most recent call last):
File "d:\a\obspy\obspy\obspy\io\gcf\tests\test_core.py", line 207, in test_write_read
self.assertEqual(out_stream, in_stream)
File "C:\Miniconda3\envs\test\lib\unittest\case.py", line 837, in assertEqual
assertion_func(first, second, msg=msg)
File "C:\Miniconda3\envs\test\lib\unittest\case.py", line 830, in _baseAssertEqual
raise self.failureException(msg)
AssertionError: <obspy.core.stream.Stream object at 0x000001B5D665E970> != <obspy.core.stream.Stream object at 0x000001B5D5FEABB0>

Skipped tests (22)

Submodule Test Skip message
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_bug150 Skipped: Geographiclib installed, not using calc_vincenty_inverse
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
signal signal/tests/test_invsim.py::InvSimTestCase::test_evalresp_file_like_object Skipped: unreproducible test fail encountered on Appveyor sometimes.
signal signal/tests/test_quality_control.py::QualityControlTestCase::test_schema_validation Skipped: Test requires the jsonschema module
taup taup/tests/test_tau.py::TestTauPyModel::test_paths_for_crustal_phases Skipped: Unsure if these test paths are accurate.

Slowest tests (20)

Runtime Test
12.306s io/xseed/tests/test_core.py::CoreTestCase::test_response_calculation_from_seed_and_xseed
11.982s taup/__init__.py::obspy.taup
10.561s core/tests/test_event.py::TestEvent::test_plot_farfield_without_quiver_with_maps
7.262s taup/tests/test_velocity_model.py::TestTauPyVelocityModel::test_read_velocity_model
6.658s taup/tests/test_seismic_phase.py::TestTauPySeismicPhase::test_shoot_existing_ray_param
5.372s taup/tau.py::obspy.taup.tau.plot_travel_times
5.355s taup/tests/test_tau.py::TestTauPyModel::test_vs_java_iasp91
4.696s core/tests/test_inventory.py::TestInventoryCartopy::test_location_plot_local
3.813s signal/tests/test_cross_correlation.py::TestCrossCorrelation::test_correlate_stream_template_and_correlation_detector
3.749s core/tests/test_inventory.py::TestInventoryCartopy::test_location_plot_global
3.594s taup/tests/test_tau.py::TestTauPyModel::test_regional_models
3.574s signal/tests/test_calibration.py::CalibrationTestCase::test_relcal_different_overlaps
3.123s io/arclink/tests/test_inventory_xml.py::ArclinkInventoryTestCase::test_auto_read_arclink_xml
2.930s taup/tests/test_seismic_phase.py::TestTauPySeismicPhase::test_many_identically_named_phases
2.675s signal/tests/test_polarization.py::PolarizationTestCase::test_polarization_vidale
2.558s signal/tests/test_spectral_estimation.py::TestPsd::test_ppsd_restricted_stacks
2.546s taup/tau.py::obspy.taup.tau.TauPyModel.__init__
2.283s taup/tests/test_tau.py::TestTauPyModel::test_ak135
2.263s core/tests/test_trace.py::TestTrace::test_remove_response_plot
2.215s taup/tests/test_tau.py::TestTauPyModel::test_iasp91