From d2e759985732132aed751a3200a65b254653af20 Mon Sep 17 00:00:00 2001 From: Simon Cross Date: Sun, 25 Aug 2024 00:27:13 +0200 Subject: [PATCH] Add missing parenthesises to matrix pytest-extra-options value. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b9ea317..1fb5a52 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11", "3.12", "3.13.0-beta.2", pypy2, pypy3] - pytest-extra-options: "-W \"ignore:pkg_resources is deprecated\"" + pytest-extra-options: ["-W \"ignore:pkg_resources is deprecated\""] steps: - uses: actions/checkout@v2