From 690694be62e2f474cc597aac3ea7782e195e9c07 Mon Sep 17 00:00:00 2001 From: Bart Schilperoort Date: Mon, 29 Jul 2024 10:33:25 +0200 Subject: [PATCH] Apparently Windows dislikes single quotes ' --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6f38503..f742cc9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -106,7 +106,7 @@ format = [ "ruff check src/ tests/ --fix --exit-non-zero-on-fix", "lint", ] -fast-test = ["pytest -m 'not slow'"] +fast-test = ["pytest -m \"not slow\""] test = [ "pytest ./src/zampy/ ./tests/ --doctest-modules --doctest-ignore-import-errors", ]