Skip to content

Commit 11b4405

Browse files
committed
run quicktest on ISO SR as well
Signed-off-by: BenjiReis <[email protected]>
1 parent f456ead commit 11b4405

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

tests/storage/iso/test_cifs_iso_sr.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ def test_create_and_destroy_sr(self, host, cifs_iso_device_config):
3535
@pytest.mark.small_vm
3636
@pytest.mark.usefixtures("cifs_iso_sr")
3737
class TestCIFSISOSR:
38+
def test_quicktest(self, cifs_iso_sr):
39+
cifs_iso_sr.run_quicktest()
3840

3941
def test_iso_mount_and_read(self, host, cifs_iso_sr, running_unix_vm):
4042
# create the ISO SR on CIFS

tests/storage/iso/test_local_iso_sr.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ def test_create_and_destroy_sr(self, host, formatted_and_mounted_ext4_disk):
4141
@pytest.mark.small_vm
4242
@pytest.mark.usefixtures("local_iso_sr")
4343
class TestLocalISOSR:
44+
def test_quicktest(self, local_iso_sr):
45+
sr, _ = local_iso_sr
46+
sr.run_quicktest()
4447

4548
def test_iso_mount_and_read(self, host, local_iso_sr, unix_vm):
4649
sr, location = local_iso_sr

tests/storage/iso/test_nfs_iso_sr.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ def test_create_and_destroy_sr(self, host, nfs_iso_device_config):
3737
@pytest.mark.small_vm
3838
@pytest.mark.usefixtures("nfs_iso_sr")
3939
class TestNFSISOSR:
40+
def test_quicktest(self, nfs_iso_sr):
41+
nfs_iso_sr.run_quicktest()
4042

4143
def test_iso_mount_and_read(self, host, nfs_iso_sr, running_unix_vm):
4244
# create the ISO SR on NFS

0 commit comments

Comments
 (0)