ValueError: write to closed file when powering on QEMUDriver with labgrid-client in the distributed environment #1747
-
Hello,
and
After running
and this happens:
What am I missing? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The QEMUDriver is unfortunately not compatible with labgrid-client. It's only usable locally (without labgrid-exporter/labgrid-coordinator). Use it with pytest or when using labgrid as a library. The best way to start is probably by adjusting (venv) $ cd examples/qemu-networking/
(venv) $ pytest -vv --lg-env local.yaml test_qemu_networking.py We should document this better in the QEMUDriver.. |
Beta Was this translation helpful? Give feedback.
The QEMUDriver is unfortunately not compatible with labgrid-client. It's only usable locally (without labgrid-exporter/labgrid-coordinator). Use it with pytest or when using labgrid as a library.
The best way to start is probably by adjusting
examples/qemu-networking/local.conf
, then:(venv) $ cd examples/qemu-networking/ (venv) $ pytest -vv --lg-env local.yaml test_qemu_networking.py
We should document this better in the QEMUDriver..