gh-actions(deps): bump tektronix/python-package-ci-cd from 1.7.5 to 1.7.6 in the gh-actions-dependencies group#104
Merged
nfelt14 merged 1 commit intoJul 15, 2025
Conversation
nfelt14
approved these changes
Jul 15, 2025
Collaborator
|
@dependabot recreate |
--- updated-dependencies: - dependency-name: tektronix/python-package-ci-cd dependency-version: 1.7.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gh-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
b7fedfc to
30132e5
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #104 +/- ##
=======================================
Coverage 87.08% 87.08%
=======================================
Files 28 28
Lines 1828 1828
Branches 189 189
=======================================
Hits 1592 1592
Misses 173 173
Partials 63 63 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
nfelt14
approved these changes
Jul 15, 2025
Test Results (macos)
tests/test_tm_data_types.pytmp_path = PosixPath('/private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pytest-of-runner/pytest-0/test_iq0')
@pytest.mark.xfail(reason="IQ waveforms are broken")
def test_iq(tmp_path: Path) -> None:
"""Test to see if IQ waveforms will return the same data when saved and loaded."""
temp_waveform = "test_iq."
waveform_data = "iq_data.npy"
waveform_name = "iq_waveform."
waveform_dir = f"{Path(__file__).parent}/waveforms"
waveform_path = f"{waveform_dir}/{waveform_name}"
data_path = f"{waveform_dir}/{waveform_data}"
extensions = [
FileExtensions.WFM.value,
FileExtensions.CSV.value,
FileExtensions.MAT.value,
]
file_types = [WaveformFileWFMIQ]
for extension, _ in zip(extensions, file_types):
temporary_path = tmp_path / (temp_waveform + extension)
> read_write_read(
"interleaved_iq_axis_values",
waveform_path + extension,
data_path,
temporary_path.as_posix(),
)
_ = <class 'tm_data_types.files_and_formats.wfm.data_formats.iq.WaveformFileWFMIQ'>
data_path = '/Users/runner/work/tm_data_types/tm_data_types/tests/waveforms/iq_data.npy'
extension = 'wfm'
extensions = ['wfm', 'csv', 'mat']
file_types = [<class 'tm_data_types.files_and_formats.wfm.data_formats.iq.WaveformFileWFMIQ'>]
temp_waveform = 'test_iq.'
temporary_path = PosixPath('/private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pytest-of-runner/pytest-0/test_iq0/test_iq.wfm')
tmp_path = PosixPath('/private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pytest-of-runner/pytest-0/test_iq0')
waveform_data = 'iq_data.npy'
waveform_dir = '/Users/runner/work/tm_data_types/tm_data_types/tests/waveforms'
waveform_name = 'iq_waveform.'
waveform_path = '/Users/runner/work/tm_data_types/tm_data_types/tests/waveforms/iq_waveform.'
tests/test_tm_data_types.py:228:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
vertical_data = 'interleaved_iq_axis_values'
waveform_path = '/Users/runner/work/tm_data_types/tm_data_types/tests/waveforms/iq_waveform.wfm'
data_path = '/Users/runner/work/tm_data_types/tm_data_types/tests/waveforms/iq_data.npy'
temp_path = '/private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pytest-of-runner/pytest-0/test_iq0/test_iq.wfm'
def read_write_read(
vertical_data: str,
waveform_path: str,
data_path: str,
temp_path: str,
):
"""Read a file, then write the waveform from the file, then read it again.
Args:
vertical_data: The name of the data attribute for vertical data.
data_path: The path for a saved numpy file for data that should be retrieved from the file.
waveform_path: The path of a saved waveform.
temp_path: The path of a temporarily saved waveform.
"""
read_wfm: Waveform = read_file(waveform_path)
> read_wfm_values = getattr(read_wfm, vertical_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E AttributeError: 'AnalogWaveform' object has no attribute 'interleaved_iq_axis_values'
data_path = '/Users/runner/work/tm_data_types/tm_data_types/tests/waveforms/iq_data.npy'
read_wfm = <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x107c01270>
temp_path = '/private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pytest-of-runner/pytest-0/test_iq0/test_iq.wfm'
vertical_data = 'interleaved_iq_axis_values'
waveform_path = '/Users/runner/work/tm_data_types/tm_data_types/tests/waveforms/iq_waveform.wfm'
tests/test_tm_data_types.py:144: AttributeErrortmp_path = PosixPath('/private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pytest-of-runner/pytest-0/test_digital0')
@pytest.mark.xfail(reason="Digital waveforms are broken")
def test_digital(tmp_path: Path) -> None:
"""Test to see if digital waveforms will return the same data when saved and loaded."""
waveform_data = "digital_data.npy"
waveform_name = "digital_waveform."
waveform_dir = f"{Path(__file__).parent}/waveforms"
waveform_path = f"{waveform_dir}/{waveform_name}"
data_path = f"{waveform_dir}/{waveform_data}"
extensions = [
FileExtensions.WFM.value,
FileExtensions.CSV.value,
]
for known_extension in extensions:
for temporary_extension in extensions:
temp_waveform = (
f"test_digital_{known_extension}_to_{temporary_extension}.{temporary_extension}"
)
temporary_path = tmp_path / temp_waveform
> read_write_read(
"y_axis_byte_values",
waveform_path + known_extension,
data_path,
temporary_path.as_posix(),
)
data_path = '/Users/runner/work/tm_data_types/tm_data_types/tests/waveforms/digital_data.npy'
extensions = ['wfm', 'csv']
known_extension = 'wfm'
temp_waveform = 'test_digital_wfm_to_wfm.wfm'
temporary_extension = 'wfm'
temporary_path = PosixPath('/private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pytest-of-runner/pytest-0/test_digital0/test_digital_wfm_to_wfm.wfm')
tmp_path = PosixPath('/private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pytest-of-runner/pytest-0/test_digital0')
waveform_data = 'digital_data.npy'
waveform_dir = '/Users/runner/work/tm_data_types/tm_data_types/tests/waveforms'
waveform_name = 'digital_waveform.'
waveform_path = '/Users/runner/work/tm_data_types/tm_data_types/tests/waveforms/digital_waveform.'
tests/test_tm_data_types.py:254:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
vertical_data = 'y_axis_byte_values'
waveform_path = '/Users/runner/work/tm_data_types/tm_data_types/tests/waveforms/digital_waveform.wfm'
data_path = '/Users/runner/work/tm_data_types/tm_data_types/tests/waveforms/digital_data.npy'
temp_path = '/private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pytest-of-runner/pytest-0/test_digital0/test_digital_wfm_to_wfm.wfm'
def read_write_read(
vertical_data: str,
waveform_path: str,
data_path: str,
temp_path: str,
):
"""Read a file, then write the waveform from the file, then read it again.
Args:
vertical_data: The name of the data attribute for vertical data.
data_path: The path for a saved numpy file for data that should be retrieved from the file.
waveform_path: The path of a saved waveform.
temp_path: The path of a temporarily saved waveform.
"""
read_wfm: Waveform = read_file(waveform_path)
> read_wfm_values = getattr(read_wfm, vertical_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E AttributeError: 'AnalogWaveform' object has no attribute 'y_axis_byte_values'. Did you mean: 'y_axis_values'?
data_path = '/Users/runner/work/tm_data_types/tm_data_types/tests/waveforms/digital_data.npy'
read_wfm = <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x107c000f0>
temp_path = '/private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pytest-of-runner/pytest-0/test_digital0/test_digital_wfm_to_wfm.wfm'
vertical_data = 'y_axis_byte_values'
waveform_path = '/Users/runner/work/tm_data_types/tm_data_types/tests/waveforms/digital_waveform.wfm'
tests/test_tm_data_types.py:144: AttributeError('/Users/runner/work/tm_data_types/tm_data_types/tests/test_tm_data_types.py', 551, 'Skipped: Skipping 1G test in GitHub Actions environment') |
Test Results (windows)
tests\test_tm_data_types.pytmp_path = WindowsPath('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_iq0')
@pytest.mark.xfail(reason="IQ waveforms are broken")
def test_iq(tmp_path: Path) -> None:
"""Test to see if IQ waveforms will return the same data when saved and loaded."""
temp_waveform = "test_iq."
waveform_data = "iq_data.npy"
waveform_name = "iq_waveform."
waveform_dir = f"{Path(__file__).parent}/waveforms"
waveform_path = f"{waveform_dir}/{waveform_name}"
data_path = f"{waveform_dir}/{waveform_data}"
extensions = [
FileExtensions.WFM.value,
FileExtensions.CSV.value,
FileExtensions.MAT.value,
]
file_types = [WaveformFileWFMIQ]
for extension, _ in zip(extensions, file_types):
temporary_path = tmp_path / (temp_waveform + extension)
> read_write_read(
"interleaved_iq_axis_values",
waveform_path + extension,
data_path,
temporary_path.as_posix(),
)
_ = <class 'tm_data_types.files_and_formats.wfm.data_formats.iq.WaveformFileWFMIQ'>
data_path = 'D:\\a\\tm_data_types\\tm_data_types\\tests/waveforms/iq_data.npy'
extension = 'wfm'
extensions = ['wfm', 'csv', 'mat']
file_types = [<class 'tm_data_types.files_and_formats.wfm.data_formats.iq.WaveformFileWFMIQ'>]
temp_waveform = 'test_iq.'
temporary_path = WindowsPath('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_iq0/test_iq.wfm')
tmp_path = WindowsPath('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_iq0')
waveform_data = 'iq_data.npy'
waveform_dir = 'D:\\a\\tm_data_types\\tm_data_types\\tests/waveforms'
waveform_name = 'iq_waveform.'
waveform_path = 'D:\\a\\tm_data_types\\tm_data_types\\tests/waveforms/iq_waveform.'
tests\test_tm_data_types.py:228:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
vertical_data = 'interleaved_iq_axis_values'
waveform_path = 'D:\\a\\tm_data_types\\tm_data_types\\tests/waveforms/iq_waveform.wfm'
data_path = 'D:\\a\\tm_data_types\\tm_data_types\\tests/waveforms/iq_data.npy'
temp_path = 'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_iq0/test_iq.wfm'
def read_write_read(
vertical_data: str,
waveform_path: str,
data_path: str,
temp_path: str,
):
"""Read a file, then write the waveform from the file, then read it again.
Args:
vertical_data: The name of the data attribute for vertical data.
data_path: The path for a saved numpy file for data that should be retrieved from the file.
waveform_path: The path of a saved waveform.
temp_path: The path of a temporarily saved waveform.
"""
read_wfm: Waveform = read_file(waveform_path)
> read_wfm_values = getattr(read_wfm, vertical_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E AttributeError: 'AnalogWaveform' object has no attribute 'interleaved_iq_axis_values'
data_path = 'D:\\a\\tm_data_types\\tm_data_types\\tests/waveforms/iq_data.npy'
read_wfm = <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000002A4DC862990>
temp_path = 'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_iq0/test_iq.wfm'
vertical_data = 'interleaved_iq_axis_values'
waveform_path = 'D:\\a\\tm_data_types\\tm_data_types\\tests/waveforms/iq_waveform.wfm'
tests\test_tm_data_types.py:144: AttributeErrortmp_path = WindowsPath('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_digital0')
@pytest.mark.xfail(reason="Digital waveforms are broken")
def test_digital(tmp_path: Path) -> None:
"""Test to see if digital waveforms will return the same data when saved and loaded."""
waveform_data = "digital_data.npy"
waveform_name = "digital_waveform."
waveform_dir = f"{Path(__file__).parent}/waveforms"
waveform_path = f"{waveform_dir}/{waveform_name}"
data_path = f"{waveform_dir}/{waveform_data}"
extensions = [
FileExtensions.WFM.value,
FileExtensions.CSV.value,
]
for known_extension in extensions:
for temporary_extension in extensions:
temp_waveform = (
f"test_digital_{known_extension}_to_{temporary_extension}.{temporary_extension}"
)
temporary_path = tmp_path / temp_waveform
> read_write_read(
"y_axis_byte_values",
waveform_path + known_extension,
data_path,
temporary_path.as_posix(),
)
data_path = 'D:\\a\\tm_data_types\\tm_data_types\\tests/waveforms/digital_data.npy'
extensions = ['wfm', 'csv']
known_extension = 'wfm'
temp_waveform = 'test_digital_wfm_to_wfm.wfm'
temporary_extension = 'wfm'
temporary_path = WindowsPath('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_digital0/test_digital_wfm_to_wfm.wfm')
tmp_path = WindowsPath('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_digital0')
waveform_data = 'digital_data.npy'
waveform_dir = 'D:\\a\\tm_data_types\\tm_data_types\\tests/waveforms'
waveform_name = 'digital_waveform.'
waveform_path = 'D:\\a\\tm_data_types\\tm_data_types\\tests/waveforms/digital_waveform.'
tests\test_tm_data_types.py:254:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
vertical_data = 'y_axis_byte_values'
waveform_path = 'D:\\a\\tm_data_types\\tm_data_types\\tests/waveforms/digital_waveform.wfm'
data_path = 'D:\\a\\tm_data_types\\tm_data_types\\tests/waveforms/digital_data.npy'
temp_path = 'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_digital0/test_digital_wfm_to_wfm.wfm'
def read_write_read(
vertical_data: str,
waveform_path: str,
data_path: str,
temp_path: str,
):
"""Read a file, then write the waveform from the file, then read it again.
Args:
vertical_data: The name of the data attribute for vertical data.
data_path: The path for a saved numpy file for data that should be retrieved from the file.
waveform_path: The path of a saved waveform.
temp_path: The path of a temporarily saved waveform.
"""
read_wfm: Waveform = read_file(waveform_path)
> read_wfm_values = getattr(read_wfm, vertical_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E AttributeError: 'AnalogWaveform' object has no attribute 'y_axis_byte_values'. Did you mean: 'y_axis_values'?
data_path = 'D:\\a\\tm_data_types\\tm_data_types\\tests/waveforms/digital_data.npy'
read_wfm = <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000002A4DC863CD0>
temp_path = 'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_digital0/test_digital_wfm_to_wfm.wfm'
vertical_data = 'y_axis_byte_values'
waveform_path = 'D:\\a\\tm_data_types\\tm_data_types\\tests/waveforms/digital_waveform.wfm'
tests\test_tm_data_types.py:144: AttributeError('D:\\a\\tm_data_types\\tm_data_types\\tests\\test_tm_data_types.py', 551, 'Skipped: Skipping 1G test in GitHub Actions environment') |
Test Results (ubuntu)
tests/test_tm_data_types.pytmp_path = PosixPath('/tmp/pytest-of-runner/pytest-0/test_iq0')
@pytest.mark.xfail(reason="IQ waveforms are broken")
def test_iq(tmp_path: Path) -> None:
"""Test to see if IQ waveforms will return the same data when saved and loaded."""
temp_waveform = "test_iq."
waveform_data = "iq_data.npy"
waveform_name = "iq_waveform."
waveform_dir = f"{Path(__file__).parent}/waveforms"
waveform_path = f"{waveform_dir}/{waveform_name}"
data_path = f"{waveform_dir}/{waveform_data}"
extensions = [
FileExtensions.WFM.value,
FileExtensions.CSV.value,
FileExtensions.MAT.value,
]
file_types = [WaveformFileWFMIQ]
for extension, _ in zip(extensions, file_types):
temporary_path = tmp_path / (temp_waveform + extension)
> read_write_read(
"interleaved_iq_axis_values",
waveform_path + extension,
data_path,
temporary_path.as_posix(),
)
_ = <class 'tm_data_types.files_and_formats.wfm.data_formats.iq.WaveformFileWFMIQ'>
data_path = '/home/runner/work/tm_data_types/tm_data_types/tests/waveforms/iq_data.npy'
extension = 'wfm'
extensions = ['wfm', 'csv', 'mat']
file_types = [<class 'tm_data_types.files_and_formats.wfm.data_formats.iq.WaveformFileWFMIQ'>]
temp_waveform = 'test_iq.'
temporary_path = PosixPath('/tmp/pytest-of-runner/pytest-0/test_iq0/test_iq.wfm')
tmp_path = PosixPath('/tmp/pytest-of-runner/pytest-0/test_iq0')
waveform_data = 'iq_data.npy'
waveform_dir = '/home/runner/work/tm_data_types/tm_data_types/tests/waveforms'
waveform_name = 'iq_waveform.'
waveform_path = '/home/runner/work/tm_data_types/tm_data_types/tests/waveforms/iq_waveform.'
tests/test_tm_data_types.py:228:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
vertical_data = 'interleaved_iq_axis_values'
waveform_path = '/home/runner/work/tm_data_types/tm_data_types/tests/waveforms/iq_waveform.wfm'
data_path = '/home/runner/work/tm_data_types/tm_data_types/tests/waveforms/iq_data.npy'
temp_path = '/tmp/pytest-of-runner/pytest-0/test_iq0/test_iq.wfm'
def read_write_read(
vertical_data: str,
waveform_path: str,
data_path: str,
temp_path: str,
):
"""Read a file, then write the waveform from the file, then read it again.
Args:
vertical_data: The name of the data attribute for vertical data.
data_path: The path for a saved numpy file for data that should be retrieved from the file.
waveform_path: The path of a saved waveform.
temp_path: The path of a temporarily saved waveform.
"""
read_wfm: Waveform = read_file(waveform_path)
> read_wfm_values = getattr(read_wfm, vertical_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E AttributeError: 'AnalogWaveform' object has no attribute 'interleaved_iq_axis_values'
data_path = '/home/runner/work/tm_data_types/tm_data_types/tests/waveforms/iq_data.npy'
read_wfm = <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x7f5eaa0be570>
temp_path = '/tmp/pytest-of-runner/pytest-0/test_iq0/test_iq.wfm'
vertical_data = 'interleaved_iq_axis_values'
waveform_path = '/home/runner/work/tm_data_types/tm_data_types/tests/waveforms/iq_waveform.wfm'
tests/test_tm_data_types.py:144: AttributeErrortmp_path = PosixPath('/tmp/pytest-of-runner/pytest-0/test_digital0')
@pytest.mark.xfail(reason="Digital waveforms are broken")
def test_digital(tmp_path: Path) -> None:
"""Test to see if digital waveforms will return the same data when saved and loaded."""
waveform_data = "digital_data.npy"
waveform_name = "digital_waveform."
waveform_dir = f"{Path(__file__).parent}/waveforms"
waveform_path = f"{waveform_dir}/{waveform_name}"
data_path = f"{waveform_dir}/{waveform_data}"
extensions = [
FileExtensions.WFM.value,
FileExtensions.CSV.value,
]
for known_extension in extensions:
for temporary_extension in extensions:
temp_waveform = (
f"test_digital_{known_extension}_to_{temporary_extension}.{temporary_extension}"
)
temporary_path = tmp_path / temp_waveform
> read_write_read(
"y_axis_byte_values",
waveform_path + known_extension,
data_path,
temporary_path.as_posix(),
)
data_path = '/home/runner/work/tm_data_types/tm_data_types/tests/waveforms/digital_data.npy'
extensions = ['wfm', 'csv']
known_extension = 'wfm'
temp_waveform = 'test_digital_wfm_to_wfm.wfm'
temporary_extension = 'wfm'
temporary_path = PosixPath('/tmp/pytest-of-runner/pytest-0/test_digital0/test_digital_wfm_to_wfm.wfm')
tmp_path = PosixPath('/tmp/pytest-of-runner/pytest-0/test_digital0')
waveform_data = 'digital_data.npy'
waveform_dir = '/home/runner/work/tm_data_types/tm_data_types/tests/waveforms'
waveform_name = 'digital_waveform.'
waveform_path = '/home/runner/work/tm_data_types/tm_data_types/tests/waveforms/digital_waveform.'
tests/test_tm_data_types.py:254:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
vertical_data = 'y_axis_byte_values'
waveform_path = '/home/runner/work/tm_data_types/tm_data_types/tests/waveforms/digital_waveform.wfm'
data_path = '/home/runner/work/tm_data_types/tm_data_types/tests/waveforms/digital_data.npy'
temp_path = '/tmp/pytest-of-runner/pytest-0/test_digital0/test_digital_wfm_to_wfm.wfm'
def read_write_read(
vertical_data: str,
waveform_path: str,
data_path: str,
temp_path: str,
):
"""Read a file, then write the waveform from the file, then read it again.
Args:
vertical_data: The name of the data attribute for vertical data.
data_path: The path for a saved numpy file for data that should be retrieved from the file.
waveform_path: The path of a saved waveform.
temp_path: The path of a temporarily saved waveform.
"""
read_wfm: Waveform = read_file(waveform_path)
> read_wfm_values = getattr(read_wfm, vertical_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E AttributeError: 'AnalogWaveform' object has no attribute 'y_axis_byte_values'. Did you mean: 'y_axis_values'?
data_path = '/home/runner/work/tm_data_types/tm_data_types/tests/waveforms/digital_data.npy'
read_wfm = <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x7f5ea9f7dd30>
temp_path = '/tmp/pytest-of-runner/pytest-0/test_digital0/test_digital_wfm_to_wfm.wfm'
vertical_data = 'y_axis_byte_values'
waveform_path = '/home/runner/work/tm_data_types/tm_data_types/tests/waveforms/digital_waveform.wfm'
tests/test_tm_data_types.py:144: AttributeError('/home/runner/work/tm_data_types/tm_data_types/tests/test_tm_data_types.py', 551, 'Skipped: Skipping 1G test in GitHub Actions environment') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions