From 541379571f73d38292f21e433959178722e941e6 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Thu, 24 Jun 2021 16:53:08 +0200 Subject: [PATCH] ceph-volume-test: add missing SUBCOMMAND definition This is making some tests fail in the CI like following: ``` + /tmp/venv.LBZdiW0Nx4/bin/tox --workdir=/tmp/tox.pQhNDR2lrs -vre xenial-bluestore-mixed_type -- --provider=libvirt using tox.ini: /home/jenkins-build/build/workspace/ceph-volume-scenario/src/ceph-volume/ceph_volume/tests/functional/lvm/tox.ini (pid 1864) ERROR: unknown environment 'xenial-bluestore-mixed_type' ``` it's picking up the wrong tox.ini file because SUBCOMMAND isn't injected as it should be. Signed-off-by: Guillaume Abrioux --- ceph-volume-test/config/definitions/ceph-volume-test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/ceph-volume-test/config/definitions/ceph-volume-test.yml b/ceph-volume-test/config/definitions/ceph-volume-test.yml index e5ebd2206..9aa314bd9 100644 --- a/ceph-volume-test/config/definitions/ceph-volume-test.yml +++ b/ceph-volume-test/config/definitions/ceph-volume-test.yml @@ -343,6 +343,7 @@ current-parameters: true predefined-parameters: | SCENARIO=xenial-bluestore-mixed_type + SUBCOMMAND=batch - name: ceph-volume-scenario current-parameters: true predefined-parameters: | -- 2.47.3