diff --git a/Makefile b/Makefile index 1f9d691c72..d93a9d66f0 100644 --- a/Makefile +++ b/Makefile @@ -60,8 +60,8 @@ clean: rm -rf docs/build rm -f docs/source/api/*.rst test -L avocado/virt && rm -f avocado/virt || true - test -L avocado/plugins/virt.py && rm -f avocado/plugins/virt.py || true - test -L avocado/plugins/virt_bootstrap.py && rm -f avocado/plugins/virt_bootstrap.py || true + test -L avocado/core/plugins/virt.py && rm -f avocado/core/plugins/virt.py || true + test -L avocado/core/plugins/virt_bootstrap.py && rm -f avocado/core/plugins/virt_bootstrap.py || true check: selftests/checkall @@ -71,8 +71,8 @@ check_cyclical: link: test -d ../avocado-virt/avocado/virt && ln -s ../../avocado-virt/avocado/virt avocado || true - test -f ../avocado-virt/avocado/plugins/virt.py && ln -s ../../../avocado-virt/avocado/plugins/virt.py avocado/plugins/ || true - test -f ../avocado-virt/avocado/plugins/virt_bootstrap.py && ln -s ../../../avocado-virt/avocado/plugins/virt_bootstrap.py avocado/plugins/ || true + test -f ../avocado-virt/avocado/core/plugins/virt.py && ln -s ../../../../avocado-virt/avocado/core/plugins/virt.py avocado/core/plugins/ || true + test -f ../avocado-virt/avocado/core/plugins/virt_bootstrap.py && ln -s ../../../../avocado-virt/avocado/core/plugins/virt_bootstrap.py avocado/core/plugins/ || true man: man/avocado.1 man/avocado-rest-client.1 diff --git a/examples/testplans/release.json b/examples/testplans/release.json index f19254603a..fb8d9e7e25 100644 --- a/examples/testplans/release.json +++ b/examples/testplans/release.json @@ -43,7 +43,7 @@ "description": "Now that the `virt_bootstrap` plugin and action `virt-bootstrap` is available run `$ avocado virt-bootstrap`. Expected result: `Your system appears to be all set to execute tests`"}, {"name": "Avocado Virt Boot Test Run and HTML report", - "description": "Now that your system is setup to run virtualization tests, run the boot test with `$ avocado run avocado-virt-tests/qemu/boot.py --open-browser`. Expected result: `PASS`, followed by a web browser showing an HTML report"}, + "description": "Now that your system is setup to run virtualization tests, run the boot test with `$ avocado run avocado-virt-tests/qemu/boot.py --sysinfo on --open-browser`. Expected result: `PASS`, followed by a web browser showing an HTML report"}, {"name": "Avocado HTML report sysinfo", "description": "On the HTML report, click on `Sysinfo (pre job, click to expand)` and verify that system information such as `hostname` and `cpuinfo` are present and accurate"},