I've enabled the CI for this component, and it currently has two fails:
one is the coverage; we need to add a coverage_config_x86_64.json file in the root of the project; you can find an example in rust-vmm-ci; Once you add the file, you can run the coverage test to see the coverage score by:
docker run --device=/dev/kvm -it --security-opt seccomp=unconfined --volume $(pwd):/vhost-user-backend rustvmm/dev:v11
cd vhost-user-backend
pytest pytest rust-vmm-ci/integration_tests/test_coverage.py
In case you want to check the test report, you can run the coverage test with --no-cleanup as follows:
I've enabled the CI for this component, and it currently has two fails:
coverage_config_x86_64.json
file in the root of the project; you can find an example in rust-vmm-ci; Once you add the file, you can run the coverage test to see the coverage score by:In case you want to check the test report, you can run the coverage test with --no-cleanup as follows:
pytest pytest rust-vmm-ci/integration_tests/test_coverage.py --no-cleanup