#132967 Report by node gh-actions covering 2010 tests from 61 modules resulted into 10 errors

Report

ObsPy version
1.1.1rc1.post0+2245.g7f5102ab…
GitHub Pull Request
https://github.com/damb/obspy/pull/20
Report file
JSON document
Total runtime
215.7 sec
Report date/time
Jan. 23, 2023, 2:11 a.m.

System / Python

Architecture
64bit
Machine
x86_64
Node
gh-actions
Processor
x86_64
Python Compiler
GCC 10.4.0
Python Implementation
CPython
Python Version
3.10.8
Release
5.15.0-1031-azure
System
Linux
Version
#38-Ubuntu SMP Mon Jan 9 12:49:59 UTC 2023

Dependencies

cartopy
0.21.1
decorator
5.1.1
flake8
---
geographiclib
2.0
lxml
4.9.2
matplotlib
3.6.3
numpy
1.24.1
obspy
1.1.1rc1.post0+2245.g7f5102abbb
pyproj
3.4.1
pytest
7.2.1
pytest-json-report
1.5.0
requests
2.28.2
scipy
1.10.0
setuptools
66.1.1
shapefile
---
sqlalchemy
1.4.46

Modules (61)

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.seishub Not tested -
obspy.clients.syngine Not tested -
obspy.core 10 1 2 3 4 5 6 7 8 9 10
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 10 10

Tracebacks (10)

2333
2334 .. rubric:: Example
2335
2336 >>> st = read()
2337 >>> print(st) # doctest: +ELLIPSIS
2338 3 Trace(s) in Stream:
2339 BW.RJOB..EHZ | 2009-08-24T00:20:03.000000Z ... | 100.0 Hz, 3000 samples
2340 BW.RJOB..EHN | 2009-08-24T00:20:03.000000Z ... | 100.0 Hz, 3000 samples
2341 BW.RJOB..EHE | 2009-08-24T00:20:03.000000Z ... | 100.0 Hz, 3000 samples
2342 >>> st.resample(10.0) # doctest: +ELLIPSIS
UNEXPECTED EXCEPTION: ValueError('Unknown window type.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2344, in get_window
beta = float(window)
ValueError: could not convert string to float: 'hanning'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2362, in get_window
winfunc = _win_equiv[winstr]
KeyError: 'hanning'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.stream.Stream.resample[2]>", line 1, in <module>
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 2351, in resample
tr.resample(sampling_rate, window=window,
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 237, in skip_if_no_data
return func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 1744, in resample
large_w = np.fft.ifftshift(get_window(window,
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2364, in get_window
raise ValueError("Unknown window type.") from e
ValueError: Unknown window type.
/home/runner/work/obspy/obspy/obspy/core/stream.py:2342: UnexpectedException
1687 the signal is assumed to be periodic.
1688
1689 .. rubric:: Example
1690
1691 >>> tr = Trace(data=np.array([0.5, 0, 0.5, 1, 0.5, 0, 0.5, 1]))
1692 >>> len(tr)
1693 8
1694 >>> tr.stats.sampling_rate
1695 1.0
1696 >>> tr.resample(4.0) # doctest: +ELLIPSIS
UNEXPECTED EXCEPTION: ValueError('Unknown window type.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2344, in get_window
beta = float(window)
ValueError: could not convert string to float: 'hanning'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2362, in get_window
winfunc = _win_equiv[winstr]
KeyError: 'hanning'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.trace.Trace.resample[3]>", line 1, in <module>
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 237, in skip_if_no_data
return func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 1744, in resample
large_w = np.fft.ifftshift(get_window(window,
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2364, in get_window
raise ValueError("Unknown window type.") from e
ValueError: Unknown window type.
/home/runner/work/obspy/obspy/obspy/core/trace.py:1696: UnexpectedException
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2344, in get_window
beta = float(window)
ValueError: could not convert string to float: 'hanning'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2362, in get_window
winfunc = _win_equiv[winstr]
KeyError: 'hanning'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/core/tests/test_stream.py", line 2247, in test_method_chaining
.resample(st[0].stats.sampling_rate / 2)\
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 2351, in resample
tr.resample(sampling_rate, window=window,
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 237, in skip_if_no_data
return func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 1744, in resample
large_w = np.fft.ifftshift(get_window(window,
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2364, in get_window
raise ValueError("Unknown window type.") from e
ValueError: Unknown window type.
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2344, in get_window
beta = float(window)
ValueError: could not convert string to float: 'hanning'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2362, in get_window
winfunc = _win_equiv[winstr]
KeyError: 'hanning'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/core/tests/test_trace.py", line 1640, in test_resample
tr_2 = tr.copy().resample(sampling_rate=50.0)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 237, in skip_if_no_data
return func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 1744, in resample
large_w = np.fft.ifftshift(get_window(window,
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2364, in get_window
raise ValueError("Unknown window type.") from e
ValueError: Unknown window type.
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2344, in get_window
beta = float(window)
ValueError: could not convert string to float: 'hanning'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2362, in get_window
winfunc = _win_equiv[winstr]
KeyError: 'hanning'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/core/tests/test_trace.py", line 1678, in test_method_chaining
.resample(tr.stats.sampling_rate / 2.0)\
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 237, in skip_if_no_data
return func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 1744, in resample
large_w = np.fft.ifftshift(get_window(window,
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2364, in get_window
raise ValueError("Unknown window type.") from e
ValueError: Unknown window type.
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2344, in get_window
beta = float(window)
ValueError: could not convert string to float: 'hanning'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2362, in get_window
winfunc = _win_equiv[winstr]
KeyError: 'hanning'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/core/tests/test_trace.py", line 1845, in test_processing_information
tr.resample(tr.stats.sampling_rate / 2.0)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 237, in skip_if_no_data
return func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 1744, in resample
large_w = np.fft.ifftshift(get_window(window,
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2364, in get_window
raise ValueError("Unknown window type.") from e
ValueError: Unknown window type.
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2344, in get_window
beta = float(window)
ValueError: could not convert string to float: 'hanning'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2362, in get_window
winfunc = _win_equiv[winstr]
KeyError: 'hanning'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/core/tests/test_trace.py", line 2119, in test_resample_new
tr.resample(0.5, window='hanning', no_filter=True)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 237, in skip_if_no_data
return func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 1744, in resample
large_w = np.fft.ifftshift(get_window(window,
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2364, in get_window
raise ValueError("Unknown window type.") from e
ValueError: Unknown window type.
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2344, in get_window
beta = float(window)
ValueError: could not convert string to float: 'hanning'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2362, in get_window
winfunc = _win_equiv[winstr]
KeyError: 'hanning'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/core/tests/test_trace.py", line 2544, in test_dtype_is_not_unnecessarily_changed
assert tr_int32.copy().resample(2.0).data.dtype == np.float64
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 237, in skip_if_no_data
return func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 1744, in resample
large_w = np.fft.ifftshift(get_window(window,
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2364, in get_window
raise ValueError("Unknown window type.") from e
ValueError: Unknown window type.
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2344, in get_window
beta = float(window)
ValueError: could not convert string to float: 'hanning'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2362, in get_window
winfunc = _win_equiv[winstr]
KeyError: 'hanning'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/core/tests/test_trace.py", line 2717, in test_resample_short_traces
tr.resample(30)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 237, in skip_if_no_data
return func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 1744, in resample
large_w = np.fft.ifftshift(get_window(window,
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/scipy/signal/windows/_windows.py", line 2364, in get_window
raise ValueError("Unknown window type.") from e
ValueError: Unknown window type.
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/core/tests/test_waveform_plugins.py", line 220, in test_is_format
assert len(paths) > 0, msg + '\n '.join(all_paths)
AssertionError: Test data directories do not exist:
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/ah/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/css/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/dmx/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/gcf/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/gse2/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/gse2/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/kinemetrics/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/nied/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/mseed/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/css/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/pdas/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/core/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/sh/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/reftek/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/rg16/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/sac/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/sac/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/seg2/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/segy/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/seisan/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/sh/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/ascii/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/segy/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/ascii/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/wav/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/win/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/y/tests/data
assert 0 > 0
+ where 0 = len({})

Skipped tests (19)

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.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_quality_control.py::QualityControlTestCase::test_schema_validation Skipped: Test requires the jsonschema module

Slowest tests (20)

Runtime Test
9.310s io/xseed/tests/test_core.py::CoreTestCase::test_response_calculation_from_seed_and_xseed
8.427s core/tests/test_event.py::TestEvent::test_plot_farfield_without_quiver_with_maps
6.921s taup/__init__.py::obspy.taup
5.272s taup/tests/test_seismic_phase.py::TestTauPySeismicPhase::test_shoot_existing_ray_param
4.488s core/tests/test_inventory.py::TestInventoryCartopy::test_location_plot_local
3.321s core/tests/test_inventory.py::TestInventoryCartopy::test_location_plot_global
3.135s taup/tau.py::obspy.taup.tau.plot_travel_times
2.827s taup/tests/test_tau.py::TestTauPyModel::test_regional_models
2.733s signal/tests/test_calibration.py::CalibrationTestCase::test_relcal_different_overlaps
2.638s taup/tests/test_tau.py::TestTauPyModel::test_vs_java_iasp91
2.487s core/stream.py::obspy.core.stream.read
2.378s signal/tests/test_cross_correlation.py::TestCrossCorrelation::test_correlate_stream_template_and_correlation_detector
2.281s io/arclink/tests/test_inventory_xml.py::ArclinkInventoryTestCase::test_auto_read_arclink_xml
2.226s taup/tests/test_velocity_model.py::TestTauPyVelocityModel::test_read_velocity_model
2.146s taup/tests/test_seismic_phase.py::TestTauPySeismicPhase::test_many_identically_named_phases
2.012s signal/tests/test_spectral_estimation.py::TestPsd::test_ppsd_restricted_stacks
1.812s core/tests/test_trace.py::TestTrace::test_remove_response_plot
1.723s core/tests/test_network.py::TestNetworkCartopy::test_location_plot_global
1.722s core/tests/test_stream.py::TestStream::test_read_url_via_network
1.671s signal/tests/test_polarization.py::PolarizationTestCase::test_polarization_vidale

Warnings (15)

Stage Filename Category Message
runtest /home/runner/work/obspy/obspy/obspy/io/mseed/tests/test_mseed_util.py:75 DeprecationWarning NumPy will stop allowing conversion of out-of-bound Python integers to integer arrays. The conversion of 128 to int8 will fail in the future. For the old behavior, usually: np.array(value).astype(dtype)` will give the desired result (the cast overflows).
runtest /home/runner/work/obspy/obspy/obspy/imaging/source.py:339 PendingDeprecationWarning The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` or ``matplotlib.colormaps.get_cmap(obj)`` instead.
runtest /home/runner/work/obspy/obspy/obspy/io/kml/core.py:65 PendingDeprecationWarning The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` or ``matplotlib.colormaps.get_cmap(obj)`` instead.
runtest /home/runner/work/obspy/obspy/obspy/core/inventory/inventory.py:981 PendingDeprecationWarning The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` or ``matplotlib.colormaps.get_cmap(obj)`` instead.
collect /home/runner/work/obspy/obspy/obspy/imaging/cm.py:299 PendingDeprecationWarning The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` or ``matplotlib.colormaps.get_cmap(obj)`` instead.
runtest /usr/share/miniconda3/envs/test/lib/python3.10/site-packages/cartopy/crs.py:814 DeprecationWarning The 'geom_factory' function is deprecated in Shapely 2.0, and will be removed in a future version
collect /home/runner/work/obspy/obspy/obspy/taup/tau.py:25 PendingDeprecationWarning The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` or ``matplotlib.colormaps.get_cmap(obj)`` instead.
runtest /usr/share/miniconda3/envs/test/lib/python3.10/site-packages/cartopy/crs.py:827 DeprecationWarning The 'geom_factory' function is deprecated in Shapely 2.0, and will be removed in a future version
runtest /home/runner/work/obspy/obspy/obspy/imaging/source.py:376 PendingDeprecationWarning The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` or ``matplotlib.colormaps.get_cmap(obj)`` instead.
runtest /home/runner/work/obspy/obspy/obspy/imaging/source.py:273 PendingDeprecationWarning The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` or ``matplotlib.colormaps.get_cmap(obj)`` instead.
collect /home/runner/work/obspy/obspy/obspy/clients/filesystem/db.py:18 MovedIn20Warning Deprecated API features detected! These feature(s) are not compatible with SQLAlchemy 2.0. To prevent incompatible upgrades prior to updating applications, ensure requirements files are pinned to "sqlalchemy<2.0". Set environment variable SQLALCHEMY_WARN_20=1 to show all deprecation warnings. Set environment variable SQLALCHEMY_SILENCE_UBER_WARNING=1 to silence this message. (Background on SQLAlchemy 2.0 at: https://sqlalche.me/e/b8d9)
collect /home/runner/work/obspy/obspy/obspy/imaging/cm.py:300 PendingDeprecationWarning The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` or ``matplotlib.colormaps.get_cmap(obj)`` instead.
runtest /home/runner/work/obspy/obspy/obspy/imaging/waveform.py:1292 PendingDeprecationWarning The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` or ``matplotlib.colormaps.get_cmap(obj)`` instead.
runtest /home/runner/work/obspy/obspy/obspy/imaging/source.py:268 PendingDeprecationWarning The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` or ``matplotlib.colormaps.get_cmap(obj)`` instead.
runtest /home/runner/work/obspy/obspy/obspy/imaging/source.py:332 PendingDeprecationWarning The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` or ``matplotlib.colormaps.get_cmap(obj)`` instead.