Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
8b48222
Initial version
rahur-NI Jun 3, 2026
fd4a6da
Updating rhel environment
rahur-NI Jun 3, 2026
bac7a21
Keeping only rhel upgrade
rahur-NI Jun 8, 2026
17f2176
Testing
rahur-NI Jun 9, 2026
761eee2
Testing to trigger build
rahur-NI Jun 10, 2026
cb47ca8
Triggerring pipeline
rahur-NI Jun 11, 2026
7f7f884
Trigger of build
rahur-NI Jun 12, 2026
3f68841
Trigger build
rahur-NI Jun 12, 2026
eeb7dc5
Build trigger
rahur-NI Jun 15, 2026
10707ea
Retrigger build
rahur-NI Jun 16, 2026
21c5847
List simulated devices present for debugging.
rahur-NI Jun 17, 2026
b7748c1
Include lsni as allowlist_externals
rahur-NI Jun 17, 2026
6fd2e2e
Include lsni as allowlist_externals in generated files as well
rahur-NI Jun 17, 2026
e3c209d
Including further logs
rahur-NI Jun 17, 2026
4e7b77d
Use PATH-based nisimdev
rahur-NI Jun 17, 2026
253c8cb
Testing niscope failure
rahur-NI Jun 18, 2026
7d554e1
Clean up of PR.
rahur-NI Jun 18, 2026
c9fae9d
Trigger Build
rahur-NI Jun 18, 2026
3f00eec
Triggering build
rahur-NI Jun 19, 2026
be57857
Trigger build
rahur-NI Jun 20, 2026
917afb1
Removing tests based on 5142 and 5124
rahur-NI Jun 23, 2026
6e32098
Reverting the nimodinst tests skipping
rahur-NI Jun 23, 2026
755102a
Reverting skipping of niscope test cases
rahur-NI Jun 23, 2026
69278b7
Updating test cases of niscope as work around for Bug 3934983
rahur-NI Jul 5, 2026
d60d7e5
Improved logs
rahur-NI Jul 5, 2026
dc6ff55
Updating the error message.
rahur-NI Jul 6, 2026
8a549cf
Retrigged build
rahur-NI Jul 7, 2026
99fe7fd
Rettigger
rahur-NI Jul 7, 2026
05bda43
Retrigger after all success
rahur-NI Jul 7, 2026
3ae19da
Rettrigier after rfsg failure
rahur-NI Jul 7, 2026
518378f
RetriggerAfterNirfsgSuccess
rahur-NI Jul 7, 2026
03635aa
After Two confinues successes of whole rhel 9.6
rahur-NI Jul 7, 2026
6998a61
Retrigger after three successful runs
rahur-NI Jul 7, 2026
00fbac2
Check error consistancy
rahur-NI Jul 8, 2026
31827fb
added code to dump Python tracebacks automatically on fatal signals
mohit-emerson Jul 12, 2026
8840d69
systest diagnostics added
mohit-emerson Jul 14, 2026
0681448
retrigger
mohit-emerson Jul 14, 2026
d5b80bf
some more logging parameters
vnktshr21 Jul 14, 2026
e13211f
fixed few build failures
vnktshr21 Jul 14, 2026
eff5a7c
retrigger
mohit-emerson Jul 15, 2026
570d1f5
attempt to collect and upload core dump as artifact
vnktshr21 Jul 15, 2026
2cc4dd5
Merge branch 'UpdateRhelVersion' of https://github.com/rahur-NI/nimi-…
vnktshr21 Jul 15, 2026
ba8529a
removed few debug info but retaining core dump creation
vnktshr21 Jul 15, 2026
a039546
core dump fetch attempt
vnktshr21 Jul 15, 2026
7fef634
removed customized core dump
vnktshr21 Jul 15, 2026
41b0cba
cleaned up debug changes
vnktshr21 Jul 15, 2026
7fbae53
modified comment to give detailed info
mohit-emerson Jul 16, 2026
9e273e0
comment modified
mohit-emerson Jul 16, 2026
2bed519
comment modified
mohit-emerson Jul 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/github_actions_aws_rhel_python64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- self-hosted
- linux
- x64
- rdss-nimibot-rhel-83-py64
- rdss-nimibot-rhel-96-py64
timeout-minutes: 40
strategy:
matrix:
Expand Down
8 changes: 8 additions & 0 deletions src/niscope/system_tests/test_system_niscope.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,11 @@ def test_configure_chan_characteristics(self, multi_instrument_session):
multi_instrument_session.configure_chan_characteristics(50, 0)
assert 50.0 == multi_instrument_session.input_impedance

@pytest.mark.skip(reason="Skipped temporarily until 5142 device simulation is fixed")
def test_filter_coefficients(self, session_5142):
# Test needs persistent simulated 5142 which is currently having issue with RHEL 9.6 version. Skipping the test
# creates gap in OSP coverage which is only supported on DAQmx-based digitizers, but the decision
# is to accept this gap to unblock other PR contributions until the issue is fully resolved.
assert [1.0] + [0.0] * 34 == session_5142.get_equalization_filter_coefficients() # coefficients list should have 35 items
try:
filter_coefficients = [1.0, 0.0, 0.0]
Expand Down Expand Up @@ -513,7 +517,11 @@ def test_import_export_file(self, multi_instrument_session):
def test_configure_trigger_software(self, multi_instrument_session):
multi_instrument_session.configure_trigger_software()

@pytest.mark.skip(reason="Skipped temporarily until 5124 device simulation is fixed")
def test_configure_trigger_video(self, session_5124):
# Test needs persistent simulated 5124 which is currently having issue with RHEL 9.6 version. Skipping the test
# creates gap in Video Triggering coverage which is only supported on DAQmx-based digitizers, but the decision
# is to accept this gap to unblock other PR contributions until the issue is fully resolved.
session_5124.configure_trigger_video('0', niscope.VideoSignalFormat.PAL, niscope.VideoTriggerEvent.FIELD1, niscope.VideoPolarity.POSITIVE, niscope.TriggerCoupling.DC)
assert niscope.VideoSignalFormat.PAL == session_5124.tv_trigger_signal_format
assert niscope.VideoTriggerEvent.FIELD1 == session_5124.tv_trigger_event
Expand Down
Loading