diff --git a/.circleci/create_circleci_config.py b/.circleci/create_circleci_config.py index f122213057b635..80322cddf1f8bf 100644 --- a/.circleci/create_circleci_config.py +++ b/.circleci/create_circleci_config.py @@ -32,7 +32,8 @@ "RUN_PT_TF_CROSS_TESTS": False, "RUN_PT_FLAX_CROSS_TESTS": False, } -COMMON_PYTEST_OPTIONS = {"max-worker-restart": 0, "dist": "loadfile", "s": None} +# Disable the use of {"s": None} as the output is way too long, causing the navigation on CircleCI impractical +COMMON_PYTEST_OPTIONS = {"max-worker-restart": 0, "dist": "loadfile"} DEFAULT_DOCKER_IMAGE = [{"image": "cimg/python:3.8.12"}]