Closed bjester closed 5 years ago
Green dot, green dot, green dot:
(venv) ivan@probook ~/P/F/pressurecooker> pytest
platform darwin -- Python 3.7.2, pytest-4.1.0, py-1.7.0, pluggy-0.8.0
collected 25 items
tests/test_converters.py . [ 4%]
tests/test_thumbnails.py . [ 8%]
tests/test_videos.py ........... [ 52%]
tests/test_web.py ... [ 64%]
tests/test_youtube.py ......... [100%]
(venv2) ivan@probook ~/P/F/pressurecooker> pytest
platform darwin -- Python 2.7.10, pytest-4.1.0, py-1.7.0, pluggy-0.8.0
collected 25 items
tests/test_converters.py s [ 4%]
tests/test_thumbnails.py . [ 8%]
tests/test_videos.py ........... [ 52%]
tests/test_web.py ... [ 64%]
tests/test_youtube.py ......... [100%]
Description
I was running into issues running the tests. The changes hopefully make it more straightforward.
Eliminated some warnings generated from tests to clean up output:
and
Additionally, the tests in
tests/test_youtube.py
were failing when run straight withpytest
. The tox configuration runs them with-s
switch, which is required for them to pass with straightpytest
. I updated thetox.ini
to add that option, resolving the issue.