mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-22 03:33:08 +00:00
Mark online media sources tests with xfail
* Test account is missing online media sources?
This commit is contained in:
parent
67b3fc694a
commit
c136c594ea
2 changed files with 3 additions and 1 deletions
|
@ -124,6 +124,7 @@ def test_myplex_optout(account_once):
|
|||
|
||||
|
||||
@pytest.mark.authenticated
|
||||
@pytest.mark.xfail(reason="Test account is missing online media sources?")
|
||||
def test_myplex_onlineMediaSources_optOut(account):
|
||||
onlineMediaSources = account.onlineMediaSources()
|
||||
for optOut in onlineMediaSources:
|
||||
|
@ -146,7 +147,7 @@ def test_myplex_onlineMediaSources_optOut(account):
|
|||
optOut._updateOptOut(optOutValue)
|
||||
|
||||
with pytest.raises(NotFound):
|
||||
assert onlineMediaSources[0]._updateOptOut('unknown')
|
||||
onlineMediaSources[0]._updateOptOut('unknown')
|
||||
|
||||
|
||||
def test_myplex_inviteFriend_remove(account, plex, mocker):
|
||||
|
|
|
@ -564,6 +564,7 @@ def test_video_Movie_hubs(movies):
|
|||
|
||||
|
||||
@pytest.mark.authenticated
|
||||
@pytest.mark.xfail(reason="Test account is missing online media sources?")
|
||||
def test_video_Movie_augmentation(movie, account):
|
||||
onlineMediaSources = account.onlineMediaSources()
|
||||
tidalOptOut = next(
|
||||
|
|
Loading…
Reference in a new issue