diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 11d0bfb63db9..62e4dfc11fd5 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -89,7 +89,7 @@ module.exports = { "/api/unreleased/": [ { title: "API Reference", path: "/api/unreleased/" }, "changelog", - "coverage", + { title: "Test Coverage", path: "https://codecov.io/gh/PrefectHQ/prefect" }, { title: "prefect", collapsable: true, diff --git a/docs/generate_docs.py b/docs/generate_docs.py index 8e62763a0cba..5290d72f890c 100644 --- a/docs/generate_docs.py +++ b/docs/generate_docs.py @@ -342,22 +342,6 @@ def create_tutorial_notebooks(tutorial): shutil.rmtree("api/unreleased", ignore_errors=True) os.makedirs("api/unreleased", exist_ok=True) - ## write link to hosted coverage reports - with open("api/unreleased/coverage.md", "w+") as f: - f.write( - textwrap.dedent( - """ - --- - title: Test Coverage - --- - - # Unit test coverage report - - To view test coverage reports, click here. - """ - ).lstrip() - ) - ## UPDATE README with open("api/unreleased/README.md", "w+") as f: f.write(