← Back to team overview

curtin-dev team mailing list archive

[Merge] ~oddbloke/curtin/+git/curtin:vmtests into curtin:master

 

Dan Watkins has proposed merging ~oddbloke/curtin/+git/curtin:vmtests into curtin:master.

Commit message:
vmtests: remove LP: #1888726 skip_by_date decorators

The bug has been fixed, these tests are now passing.


Requested reviews:
  curtin developers (curtin-dev)
Related bugs:
  Bug #1888726 in systemd (Ubuntu): "systemd-udevd regression: some renamed network interfaces stuck in "pending" state"
  https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1888726

For more details, see:
https://code.launchpad.net/~oddbloke/curtin/+git/curtin/+merge/395436
-- 
Your team curtin developers is requested to review the proposed merge of ~oddbloke/curtin/+git/curtin:vmtests into curtin:master.
diff --git a/tests/vmtests/test_network_ipv6.py b/tests/vmtests/test_network_ipv6.py
index 50a139c..d76d295 100644
--- a/tests/vmtests/test_network_ipv6.py
+++ b/tests/vmtests/test_network_ipv6.py
@@ -56,10 +56,6 @@ class BionicTestNetworkIPV6(relbase.bionic, TestNetworkIPV6Abs):
 class GroovyTestNetworkIPV6(relbase.groovy, TestNetworkIPV6Abs):
     __test__ = True
 
-    @TestNetworkIPV6Abs.skip_by_date("1888726", "2020-10-15")
-    def test_ip_output(self):
-        return super().test_ip_output()
-
 
 class Centos66TestNetworkIPV6(centos_relbase.centos66_xenial,
                               CentosTestNetworkIPV6Abs):
diff --git a/tests/vmtests/test_network_ipv6_vlan.py b/tests/vmtests/test_network_ipv6_vlan.py
index a0bf267..226f52e 100644
--- a/tests/vmtests/test_network_ipv6_vlan.py
+++ b/tests/vmtests/test_network_ipv6_vlan.py
@@ -29,10 +29,6 @@ class FocalTestNetworkIPV6Vlan(relbase.focal, TestNetworkIPV6VlanAbs):
 class GroovyTestNetworkIPV6Vlan(relbase.groovy, TestNetworkIPV6VlanAbs):
     __test__ = True
 
-    @TestNetworkVlanAbs.skip_by_date("1888726", "2020-10-15")
-    def test_ip_output(self):
-        return super().test_ip_output()
-
 
 class Centos66TestNetworkIPV6Vlan(centos_relbase.centos66_xenial,
                                   CentosTestNetworkIPV6VlanAbs):
diff --git a/tests/vmtests/test_network_vlan.py b/tests/vmtests/test_network_vlan.py
index 9f1094b..691ba83 100644
--- a/tests/vmtests/test_network_vlan.py
+++ b/tests/vmtests/test_network_vlan.py
@@ -86,10 +86,6 @@ class FocalTestNetworkVlan(relbase.focal, TestNetworkVlanAbs):
 class GroovyTestNetworkVlan(relbase.groovy, TestNetworkVlanAbs):
     __test__ = True
 
-    @TestNetworkVlanAbs.skip_by_date("1888726", "2020-10-15")
-    def test_ip_output(self):
-        return super().test_ip_output()
-
 
 class Centos66TestNetworkVlan(centos_relbase.centos66_xenial,
                               CentosTestNetworkVlanAbs):

Follow ups