Deselect export tests for mvp
This commit is contained in:
parent
d973b479cf
commit
c76c9d58f8
|
@ -145,7 +145,7 @@ def test_export_empty(user: UserClient):
|
||||||
assert len(export_csv) == 0, 'Csv is not empty'
|
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):
|
def test_export_computer_monitor(user: UserClient):
|
||||||
"""Test a export device type computer monitor."""
|
"""Test a export device type computer monitor."""
|
||||||
snapshot, _ = user.post(file('computer-monitor.snapshot'), res=Snapshot)
|
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'
|
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):
|
def test_export_keyboard(user: UserClient):
|
||||||
"""Test a export device type keyboard."""
|
"""Test a export device type keyboard."""
|
||||||
snapshot, _ = user.post(file('keyboard.snapshot'), res=Snapshot)
|
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'
|
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):
|
def test_export_multiple_different_devices(user: UserClient):
|
||||||
"""Test function 'Export' of multiple different device types (like
|
"""Test function 'Export' of multiple different device types (like
|
||||||
computers, keyboards, monitors, etc..)
|
computers, keyboards, monitors, etc..)
|
||||||
|
|
Reference in New Issue