~curtin-dev/curtin/trunk

« back to all changes in this revision

Viewing changes to tests/vmtests/test_network_ipv6_vlan.py

  • Committer: Scott Moser
  • Date: 2017-12-20 17:33:03 UTC
  • Revision ID: smoser@ubuntu.com-20171220173303-29gha5qb8wpqrd40
README: Mention move of revision control to git.

curtin development has moved its revision control to git.
It is available at
  https://code.launchpad.net/curtin

Clone with
  git clone https://git.launchpad.net/curtin
or
  git clone git+ssh://git.launchpad.net/curtin

For more information see
  http://curtin.readthedocs.io/en/latest/topics/development.html

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from .releases import base_vm_classes as relbase
2
 
from .releases import centos_base_vm_classes as centos_relbase
3
 
from .test_network_vlan import (TestNetworkVlanAbs,
4
 
                                CentosTestNetworkVlanAbs)
5
 
 
6
 
 
7
 
class TestNetworkIPV6VlanAbs(TestNetworkVlanAbs):
8
 
    conf_file = "examples/tests/vlan_network_ipv6.yaml"
9
 
 
10
 
 
11
 
class CentosTestNetworkIPV6VlanAbs(CentosTestNetworkVlanAbs):
12
 
    conf_file = "examples/tests/vlan_network_ipv6.yaml"
13
 
 
14
 
 
15
 
class TrustyTestNetworkIPV6Vlan(relbase.trusty, TestNetworkIPV6VlanAbs):
16
 
    __test__ = True
17
 
 
18
 
 
19
 
class TrustyHWEXTestNetworkIPV6Vlan(relbase.trusty_hwe_x,
20
 
                                    TestNetworkIPV6VlanAbs):
21
 
    __test__ = True
22
 
 
23
 
 
24
 
class XenialTestNetworkIPV6Vlan(relbase.xenial, TestNetworkIPV6VlanAbs):
25
 
    __test__ = True
26
 
 
27
 
 
28
 
class ZestyTestNetworkIPV6Vlan(relbase.zesty, TestNetworkIPV6VlanAbs):
29
 
    __test__ = True
30
 
 
31
 
 
32
 
class ArtfulTestNetworkIPV6Vlan(relbase.artful, TestNetworkIPV6VlanAbs):
33
 
    __test__ = True
34
 
 
35
 
 
36
 
class BionicTestNetworkIPV6Vlan(relbase.bionic, TestNetworkIPV6VlanAbs):
37
 
    __test__ = True
38
 
 
39
 
 
40
 
class Centos66TestNetworkIPV6Vlan(centos_relbase.centos66fromxenial,
41
 
                                  CentosTestNetworkIPV6VlanAbs):
42
 
    __test__ = True
43
 
 
44
 
 
45
 
class Centos70TestNetworkIPV6Vlan(centos_relbase.centos70fromxenial,
46
 
                                  CentosTestNetworkIPV6VlanAbs):
47
 
    __test__ = True