From 6a4db4f7dc02cb4be8c1f2868ea018348be6f0bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Gr=C3=B6nholm?= Date: Sun, 12 Nov 2023 23:57:38 +0200 Subject: [PATCH] Removed skip checks for `test_uwsgi_threads_error_subprocess` --- tests/test_schedulers.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tests/test_schedulers.py b/tests/test_schedulers.py index 0983f5b7c..2e4d7aacb 100644 --- a/tests/test_schedulers.py +++ b/tests/test_schedulers.py @@ -1,7 +1,6 @@ from __future__ import annotations import os -import platform import subprocess import sys import sysconfig @@ -873,14 +872,6 @@ def test_uwsgi_threads_error(self, monkeypatch: MonkeyPatch) -> None: ): Scheduler().start_in_background() - @pytest.mark.skipif( - platform.python_implementation() != "CPython", - reason="May not work on other Python implementations", - ) - @pytest.mark.skipif( - platform.system() != "Windows", - reason="uWSGI won't install on Windows", - ) def test_uwsgi_threads_error_subprocess(self) -> None: uwsgi_path = Path(sysconfig.get_path("scripts")) / "uwsgi" if not uwsgi_path.is_file():