From ea09f5ff5c96607054e2d62e720de0e913c18dfd Mon Sep 17 00:00:00 2001 From: Stuart Reed Date: Thu, 2 May 2024 16:36:41 -0600 Subject: [PATCH] Store Docs Artifacts (#133) * Store artifacts in docs CI * Force `pytest` import above all else --- .circleci/config.yml | 2 ++ pyproject.toml | 1 + 2 files changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 403fe74a..1e82e034 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -105,6 +105,8 @@ docs: &docs - run: name: run tox command: python -m tox run -r + - store_artifacts: + path: /home/circleci/repo/docs/_build - save_cache: paths: - .tox diff --git a/pyproject.toml b/pyproject.toml index e46b7434..23b8399e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,6 +7,7 @@ combine_as_imports = true extra_standard_library = "pytest" force_grid_wrap = 1 force_sort_within_sections = true +force_to_top = "pytest" honor_noqa = true known_first_party = "" known_third_party = "hypothesis"