diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d88133646..b1fe24325 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -50,6 +50,8 @@ jobs: meson: - include: + - os: ubuntu + python: 'graalpy-24.0' - os: ubuntu python: 'pypy-3.9' - os: ubuntu diff --git a/pyproject.toml b/pyproject.toml index 8cfd805b4..ca4f83060 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -117,4 +117,6 @@ testpaths = ['tests'] xfail_strict = true filterwarnings = [ 'error', + # For some reason, running the tests with GraalPy 24.0 triggers this warning. + 'ignore:The distutils package is deprecated:DeprecationWarning', ]