Skip to content

Commit

Permalink
mark bug as known failure
Browse files Browse the repository at this point in the history
mark error tracked in ionos-cloud#205 as known failure,
this allows us to check for passing pytest,
in e.g. actions
  • Loading branch information
zeromind committed Mar 18, 2022
1 parent e5c37f3 commit cdd1e43
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dim-testsuite/tests/allocator_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
from tests.util import RPCTest
from sqlalchemy.exc import IntegrityError
import pytest


def ips(d):
Expand Down Expand Up @@ -147,6 +149,7 @@ def test_priorities(self):
self.r.subnet_set_priority('192.168.1.0/24', 1)
assert self.r.ippool_get_ip('testpool')['ip'] == '192.168.1.1'

@pytest.mark.xfail(raises=IntegrityError, reason='https://github.com/1and1/dim/issues/205')
def test_delegation_not_subnet(self):
self.r.ipblock_create('10::/32', status='Container')
self.r.ippool_create('pool')
Expand Down

0 comments on commit cdd1e43

Please sign in to comment.