Brad Keryan

Results 41 comments of Brad Keryan

Note that pyenv and pyenv-win are separate projects. Here is a related pyenv-win issue: https://github.com/pyenv-win/pyenv-win/issues/352

@reckenro This has the same failure mode as #986, but it's happening in a different test case. @maxxboehme tried updating NiFgenDriverApiTest to use a 54x3 device, but there were a...

@ni-jfitzger Consider using the Mend Renovate app to keep your GitHub actions and Poetry lock files up-to-date. Here is the config we've been using in measurementlink-python: https://github.com/ni/measurementlink-python/blob/main/.github/renovate.json It automatically posts...

With GROUP_BY_CHANNEL, a larger array will not have the right binary layout. - With 3 channels and 3 samples, the array has this layout: `[1,1,1,2,2,2,3,3,3]` - With 3 channels and...

@db4 Are you building this as a one-folder or one-file EXE? One-file EXEs [extract files to a temp directory and spawn a child process](https://pyinstaller.org/en/stable/operating-mode.html#bundling-to-one-file), so one-folder EXEs would have a...

A comment from that PR: I think the error reporting in the MI driver tests needs some improvements. ``` ::grpc::Status status = GetStub()->SendSoftwareEdgeTrigger(&context, request, &response); EXPECT_TRUE(status.ok()); expect_api_success(response.status()); ``` `EXPECT_TRUE(status.ok());` reports...

This may be related to the fact that `nidaqmx` changes the global warning filter to enable `ResourceWarning`: #325

Changing the repeated capability object types would have more value if you [added type hints](https://github.com/ni/nimi-python/issues/1887). :) Then it would affect which properties show up in autocomplete.

Another RF self-calibrate error in the PR build for https://github.com/ni/grpc-device/pull/926: https://github.com/ni/grpc-device/actions/runs/5009640775/jobs/8979932497 ``` [ RUN ] NiRFmxInstrDriverApiTests.InitializeFromNIRFSAArray_SelfCalibrate_Succeeds unknown file: error: C++ exception with description "-380589: Error description not found Error 1097:...

When I fix https://github.com/ni/measurementlink-python/issues/557 I'll update nidaqmx-python as well.