diff --git a/noxfile.py b/noxfile.py index 175b07d..af0c498 100644 --- a/noxfile.py +++ b/noxfile.py @@ -92,8 +92,7 @@ def test_parallel(session: nox.Session) -> None: """Run tests.""" posargs = session.posargs if not posargs: - # TODO remove -k test_pybase64, https://github.com/Quansight-Labs/pytest-run-parallel/pull/157 - posargs = ["-k", "test_pybase64", "--parallel-threads=auto", "--iterations=32"] + posargs = ["--parallel-threads=auto", "--iterations=32"] session.install(*_get_group_dependencies("test")) # make extension mandatory by exporting CIBUILDWHEEL=1 env = {"CIBUILDWHEEL": "1"} diff --git a/pyproject.toml b/pyproject.toml index 9418a20..27f2012 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ test = [ "pytest==9.0.2 ; python_version >= '3.10'", "pytest==8.4.2 ; python_version == '3.9'", "pytest==8.3.5 ; python_version == '3.8'", - "pytest-run-parallel==0.8.0 ; python_version >= '3.13'", + "pytest-run-parallel==0.8.1 ; python_version >= '3.13'", "typing_extensions>=4.6.0", ] benchmark = [ @@ -22,7 +22,7 @@ coverage = [ ] docs = [ "sphinx==8.2.3", - "furo==2025.9.25", + "furo==2025.12.19", ] dev = [ {include-group = "coverage"},