From 11e5ca85890ca294f140a9923f36abea9b83785e Mon Sep 17 00:00:00 2001 From: porink0424 Date: Wed, 30 Oct 2024 17:59:02 +0900 Subject: [PATCH] Add TODO comments --- .github/workflows/tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ee6c833..bbe0b97 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -56,6 +56,9 @@ jobs: python -m pip install --upgrade pip setuptools numpy hypothesis pytest pytest-freethreaded pip install --progress-bar off . - run: python -m unittest + # TODO: Using `unittest` style causes `pytest-freethreaded` to fail with `ConcurrencyError`. + # Rewriting as top-level functions works, + # so a follow-up is needed to refactor from `unittest` to `pytest`. - run: python -m pytest --threads 1 --iterations 1 --require-gil-disabled tests/test_free_threaded.py test-numpy2: runs-on: ubuntu-latest