diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 848b933e..2b90a131 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -27,8 +27,6 @@ jobs: vmImage: 'Ubuntu-latest' strategy: matrix: - Python37: - python.version: '3.7' Python38: python.version: '3.8' Python39: diff --git a/tests/transcoder_test.py b/tests/transcoder_test.py index 457f9856..df7a05c5 100644 --- a/tests/transcoder_test.py +++ b/tests/transcoder_test.py @@ -1,16 +1,8 @@ from __future__ import annotations -import sys - -import pytest - import nzb2media from nzb2media import transcoder -@pytest.mark.xfail( - sys.platform == 'win32' and sys.version_info < (3, 8), - reason='subprocess.Popen does not support pathlib.Path commands in Python 3.7', -) def test_transcoder_check(): assert transcoder.is_video_good(nzb2media.TEST_FILE, 1) is True