simvue-io / client

Simvue Python client
https://docs.simvue.io
Apache License 2.0
4 stars 0 forks source link

`add_process` most basic example doesn't work #439

Open alahiff opened 1 week ago

alahiff commented 1 week ago

Following https://docs.simvue.io/tracking-monitoring/launching_processes/ using the client from PyPI:

run.add_process("my_process", "echo", "Hello World!")

gives:

FileNotFoundError: [Errno 2] No such file or directory: 'None'

For some reason add_process always replaces the executable with None, at least it does for me.

alahiff commented 1 week ago

It seems like you have to do the following for it to work:

run.add_process("my_process", "Hello World!", executable="echo")
kzscisoft commented 6 days ago

Addressed in v1.0.1-rc branch