From 5e455f61afc1019d02d9e38ded36ae0845e5c2fd Mon Sep 17 00:00:00 2001 From: Brad Keryan Date: Wed, 17 Sep 2025 11:43:19 -0500 Subject: [PATCH 1/3] github: Try using setup-python and setup-poetry for system tests --- .github/workflows/run_system_tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/run_system_tests.yml b/.github/workflows/run_system_tests.yml index 71589dbd1..a322c84ed 100644 --- a/.github/workflows/run_system_tests.yml +++ b/.github/workflows/run_system_tests.yml @@ -23,6 +23,10 @@ jobs: uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - name: Import DAQmx config run: C:\nidaqmxconfig\targets\win64U\x64\msvc-14.0\release\nidaqmxconfig.exe --eraseconfig --import tests\max_config\nidaqmxMaxConfig.ini + - name: Set up Python + uses: ni/python-actions/setup-python@8554e7ef74e95c9762962205f45a1e10c48de671 # v0.5.1 + - name: Set up Poetry + uses: ni/python-actions/setup-poetry@8554e7ef74e95c9762962205f45a1e10c48de671 # v0.5.1 - name: Cache virtualenvs uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 with: From 59d50e10962ed2bb473cf2430abb6590f4a0aec3 Mon Sep 17 00:00:00 2001 From: Brad Keryan Date: Fri, 19 Sep 2025 16:23:17 -0500 Subject: [PATCH 2/3] github: Show PATH for debugging --- .github/workflows/run_system_tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/run_system_tests.yml b/.github/workflows/run_system_tests.yml index a322c84ed..03c4eaba6 100644 --- a/.github/workflows/run_system_tests.yml +++ b/.github/workflows/run_system_tests.yml @@ -23,6 +23,8 @@ jobs: uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - name: Import DAQmx config run: C:\nidaqmxconfig\targets\win64U\x64\msvc-14.0\release\nidaqmxconfig.exe --eraseconfig --import tests\max_config\nidaqmxMaxConfig.ini + - run: echo $env:PATH + shell: powershell - name: Set up Python uses: ni/python-actions/setup-python@8554e7ef74e95c9762962205f45a1e10c48de671 # v0.5.1 - name: Set up Poetry From c6bc759df6ebf064f47a968dc4835dff4f5a6dd3 Mon Sep 17 00:00:00 2001 From: Brad Keryan Date: Sat, 20 Sep 2025 11:20:02 -0500 Subject: [PATCH 3/3] github: Revert debugging code --- .github/workflows/run_system_tests.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/run_system_tests.yml b/.github/workflows/run_system_tests.yml index 03c4eaba6..a322c84ed 100644 --- a/.github/workflows/run_system_tests.yml +++ b/.github/workflows/run_system_tests.yml @@ -23,8 +23,6 @@ jobs: uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - name: Import DAQmx config run: C:\nidaqmxconfig\targets\win64U\x64\msvc-14.0\release\nidaqmxconfig.exe --eraseconfig --import tests\max_config\nidaqmxMaxConfig.ini - - run: echo $env:PATH - shell: powershell - name: Set up Python uses: ni/python-actions/setup-python@8554e7ef74e95c9762962205f45a1e10c48de671 # v0.5.1 - name: Set up Poetry