Skip to content

Commit 8a0b03c

Browse files
authored
Merge branch 'master' into feature/web_url
2 parents 3bebeaa + 9f9e235 commit 8a0b03c

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,6 @@ jobs:
251251
coverage xml
252252
253253
- name: Upload ${{ matrix.plex }} coverage to Codecov
254-
uses: codecov/[email protected].2
254+
uses: codecov/[email protected].3
255255
with:
256256
flags: ${{ matrix.plex }}

requirements_dev.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
#---------------------------------------------------------
55
coveralls==3.2.0
66
flake8==3.9.2
7-
pillow==8.3.1
8-
pytest==6.2.4
7+
pillow==8.3.2
8+
pytest==6.2.5
99
pytest-cache==1.0
1010
pytest-cov==2.12.1
1111
pytest-mock<3.6.2
@@ -14,5 +14,5 @@ requests==2.26.0
1414
requests-mock==1.9.3
1515
sphinx==4.1.2
1616
sphinx-rtd-theme==0.5.2
17-
tqdm==4.62.0
18-
websocket-client==1.1.0
17+
tqdm==4.62.2
18+
websocket-client==1.2.1

tests/test_playlist.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
from plexapi.exceptions import BadRequest, NotFound, Unsupported
77

88
from . import conftest as utils
9+
from . import test_mixins
910

1011

1112
def test_Playlist_attrs(playlist):
@@ -270,3 +271,8 @@ def test_Playlist_PlexWebURL(plex, show):
270271
assert quote_plus(playlist.key) in url
271272
finally:
272273
playlist.delete()
274+
275+
276+
def test_Playlist_mixins_images(playlist):
277+
#test_mixins.edit_art(playlist)
278+
test_mixins.edit_poster(playlist)

0 commit comments

Comments
 (0)