From 722888eeb577804a4f6de2fae47fc38f42d9bcbd Mon Sep 17 00:00:00 2001 From: Eitan Turok <150733043+eitanturok@users.noreply.github.com> Date: Tue, 30 Jul 2024 20:47:18 -0400 Subject: [PATCH] log pytest in color in GA (#3505) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8ca97bc494..18f23ad267 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -88,7 +88,7 @@ reportUnusedCoroutine = "error" # Pytest [tool.pytest.ini_options] # By default, do not run gpu, vision, docs, notebook, or daily tests -addopts = "--codeblocks --strict-markers -m 'not gpu and not doctest and not daily and not remote'" +addopts = "--codeblocks --strict-markers -m 'not gpu and not doctest and not daily and not remote' --color=yes" markers = [ # Tests that require a world_size of two should be annotated with `@pytest.mark.world_size(2)`.