Skip to content
Snippets Groups Projects
Verified Commit 33e071f4 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

TST: mark test_empty_text_value as XFAIL

parent 319523b7
Branches
Tags
No related merge requests found
...@@ -39,6 +39,7 @@ def teardown(): ...@@ -39,6 +39,7 @@ def teardown():
print(e) print(e)
@pytest.mark.xfail(reason="""wait for f-empty-and-null-values branch of pylib""")
def test_empty_string(): def test_empty_string():
r1 = db.Record() r1 = db.Record()
r1.add_parent("TestRT") r1.add_parent("TestRT")
...@@ -94,6 +95,7 @@ def test_null_value(): ...@@ -94,6 +95,7 @@ def test_null_value():
assert len(db.execute_query("FIND Record TestRT")) == 2 assert len(db.execute_query("FIND Record TestRT")) == 2
@pytest.mark.xfail(reason="""wait for f-empty-and-null-values branch of pylib""")
def test_list_with_empty_string(): def test_list_with_empty_string():
r1 = db.Record() r1 = db.Record()
r1.add_parent("TestRT") r1.add_parent("TestRT")
......
...@@ -24,7 +24,6 @@ ...@@ -24,7 +24,6 @@
"""Tests for issues on gitlab.com, project caosdb-mysqlbackend.""" """Tests for issues on gitlab.com, project caosdb-mysqlbackend."""
import caosdb as db import caosdb as db
from nose import with_setup
def setup_module(): def setup_module():
...@@ -46,7 +45,6 @@ def teardown(): ...@@ -46,7 +45,6 @@ def teardown():
# ########################### Issue tests start here ########################### # ########################### Issue tests start here ###########################
@with_setup(setup, teardown)
def test_issue_85_a(): def test_issue_85_a():
"""SQLIntegrityConstraintViolationException for special inheritance patterns. """SQLIntegrityConstraintViolationException for special inheritance patterns.
...@@ -71,7 +69,6 @@ def test_issue_85_a(): ...@@ -71,7 +69,6 @@ def test_issue_85_a():
# # Duplicate entry '12345-12346-12345' for key 'PRIMARY' # # Duplicate entry '12345-12346-12345' for key 'PRIMARY'
@with_setup(setup, teardown)
def test_issue_85_b(): def test_issue_85_b():
"""SQLIntegrityConstraintViolationException for special inheritance patterns. """SQLIntegrityConstraintViolationException for special inheritance patterns.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment