~curtin-dev/curtin/xenial

« back to all changes in this revision

Viewing changes to tests/vmtests/test_multipath.py

  • Committer: Scott Moser
  • Date: 2017-02-08 22:22:44 UTC
  • Revision ID: smoser@ubuntu.com-20170208222244-n4y5eu0r6wp060cj
* New upstream snapshot.
  - Install zipl in target on s390x arch. (LP: #1662346)
  - avoid UnicodeDecode error on passing non-utf8 into shlex
  - adjustments to version string handling, improved pack unit tests.
  - helpers/common: Add grub install debugging output
  - curtin: add version module and display in output and logs
  - content decoding in load_file, apply_net raise exception on errors
  - gpg: retry when recv'ing gpg keys fail (LP: #1661337)
  - Add clear_holders checks to disk and partition handlers (LP: #1659509)
  - net: add new lines after rendered static routes. (LP: #1649652)
  - multipath: don't run update-grub; setup_grub will handle this better.
    (LP: #165636)
  - Test changes:
    - vmtest: Add tests for zesty and Trusty HWE-X kernels.
    - tests: fix tox tip-pycodestyle complaints
    - image-sync: add debugging output to help diagnose errors
    - vmtest: change get_curtin_version to use version subcommand.
    - Remove style checking during build and add latest style checks to tox
    - subp doc an unit test improvements.
    - flake8: remove unused variable.
    - vmtest: Add the ability to add extra config files to test execution.
    - vmtest: overhaul image sync
    - vmtest: skip apt-proxy test if not set
    - vmtest: add 'webserv' helper
    - vmtest: add CURTIN_VMTEST_CURTIN_EXE variable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
    __test__ = True
48
48
 
49
49
 
 
50
class TrustyHWEXTestMultipathBasic(relbase.trusty_hwe_x,
 
51
                                   TestMultipathBasicAbs):
 
52
    __test__ = True
 
53
 
 
54
 
50
55
class XenialTestMultipathBasic(relbase.xenial, TestMultipathBasicAbs):
51
56
    __test__ = True
52
57
 
53
58
 
54
59
class YakketyTestMultipathBasic(relbase.yakkety, TestMultipathBasicAbs):
55
60
    __test__ = True
 
61
 
 
62
 
 
63
class ZestyTestMultipathBasic(relbase.zesty, TestMultipathBasicAbs):
 
64
    __test__ = True