~smoser/curtin/yakkety.lp1666986

« back to all changes in this revision

Viewing changes to tests/vmtests/test_lvm.py

  • Committer: Scott Moser
  • Date: 2016-02-12 21:54:46 UTC
  • mto: (58.1.1 pkg)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: smoser@ubuntu.com-20160212215446-0h8ka36oznelsjz1
Tags: upstream-0.1.0~bzr351
ImportĀ upstreamĀ versionĀ 0.1.0~bzr351

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
from . import VMBaseClass
2
 
from unittest import TestCase
 
2
from .releases import base_vm_classes as relbase
3
3
 
4
4
import textwrap
5
5
 
6
6
 
7
 
class TestLvmAbs(VMBaseClass, TestCase):
8
 
    __test__ = False
 
7
class TestLvmAbs(VMBaseClass):
9
8
    conf_file = "examples/tests/lvm.yaml"
10
 
    repo = "maas-daily"
11
 
    arch = "amd64"
12
9
    install_timeout = 600
13
10
    boot_timeout = 100
14
11
    interactive = False
43
40
            ["fstab", "ls_dname"])
44
41
 
45
42
 
46
 
class WilyTestLvm(TestLvmAbs):
47
 
    __test__ = True
48
 
    release = "wily"
49
 
 
50
 
 
51
 
class VividTestLvm(TestLvmAbs):
52
 
    __test__ = True
53
 
    release = "vivid"
 
43
class VividTestLvm(relbase.vivid, TestLvmAbs):
 
44
    __test__ = True
 
45
 
 
46
 
 
47
class WilyTestLvm(relbase.wily, TestLvmAbs):
 
48
    __test__ = True