From c76c9d58f850f8324615dcab517027a2520b6913 Mon Sep 17 00:00:00 2001 From: nad Date: Wed, 12 Aug 2020 11:59:12 +0200 Subject: [PATCH] Deselect export tests for mvp --- tests/test_documents.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_documents.py b/tests/test_documents.py index 0c478930..81a83bd8 100644 --- a/tests/test_documents.py +++ b/tests/test_documents.py @@ -145,7 +145,7 @@ def test_export_empty(user: UserClient): assert len(export_csv) == 0, 'Csv is not empty' -@pytest.mark.mvp +@pytest.mark.xfail(reason='Feature not developed (Beta)') def test_export_computer_monitor(user: UserClient): """Test a export device type computer monitor.""" snapshot, _ = user.post(file('computer-monitor.snapshot'), res=Snapshot) @@ -170,6 +170,7 @@ def test_export_computer_monitor(user: UserClient): assert fixture_csv[1] == export_csv[1], 'Component information are not equal' +@pytest.mark.xfail(reason='Feature not developed (Beta)') def test_export_keyboard(user: UserClient): """Test a export device type keyboard.""" snapshot, _ = user.post(file('keyboard.snapshot'), res=Snapshot) @@ -193,7 +194,7 @@ def test_export_keyboard(user: UserClient): assert fixture_csv[1] == export_csv[1], 'Component information are not equal' -@pytest.mark.mvp +@pytest.mark.xfail(reason='Feature not developed (Beta)') def test_export_multiple_different_devices(user: UserClient): """Test function 'Export' of multiple different device types (like computers, keyboards, monitors, etc..)