From 95a77819db1d0d765da34e63019a9433151addd0 Mon Sep 17 00:00:00 2001 From: Sai-Suraj-27 Date: Wed, 14 Aug 2024 23:00:01 +0530 Subject: [PATCH] fix: Fixed unknown pytest config option `doctest_glob` (#32475) Fixed unknown config option doctest_glob. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d709ba0a49..3952b14b65 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,8 +30,8 @@ skip-magic-trailing-comma = false line-ending = "auto" [tool.pytest.ini_options] +addopts = "--doctest-glob='**/*.md'" doctest_optionflags="NUMBER NORMALIZE_WHITESPACE ELLIPSIS" -doctest_glob="**/*.md" markers = [ "flash_attn_test: marks tests related to flash attention (deselect with '-m \"not flash_attn_test\"')", "bitsandbytes: select (or deselect with `not`) bitsandbytes integration tests",