Skip to content

Commit

Permalink
Removed skip checks for test_uwsgi_threads_error_subprocess
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm committed Nov 12, 2023
1 parent 7ed4e1f commit 6a4db4f
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions tests/test_schedulers.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from __future__ import annotations

import os
import platform
import subprocess
import sys
import sysconfig
Expand Down Expand Up @@ -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():
Expand Down

0 comments on commit 6a4db4f

Please sign in to comment.