From f1bf32c4bee757e72537320341aa4703387b0c22 Mon Sep 17 00:00:00 2001 From: Peter Holloway Date: Mon, 20 Apr 2026 11:05:22 +0100 Subject: [PATCH] chore: Remove references to blueapi/startup The module previously held sample plan and device configurations and the project configuration level references were left when the module was removed. --- codecov.yml | 2 -- pyproject.toml | 6 +----- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/codecov.yml b/codecov.yml index fafe8f3995..55600b424c 100644 --- a/codecov.yml +++ b/codecov.yml @@ -4,5 +4,3 @@ coverage: default: target: 85% # the required coverage value threshold: 1% # the leniency in hitting the target -ignore: - - "src/blueapi/startup" diff --git a/pyproject.toml b/pyproject.toml index c0126861cb..659779994a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -95,10 +95,7 @@ reportMissingImports = false # Ignore missing stubs in imported modules [tool.pytest.ini_options] # Run pytest with all our checkers, and don't spam us with massive tracebacks on error -addopts = """ - --tb=native -vv --doctest-modules --doctest-glob="*.rst" - --ignore=src/blueapi/startup - """ +addopts = '--tb=native -vv --doctest-modules --doctest-glob="*.rst"' # https://iscinumpy.gitlab.io/post/bound-version-constraints/#watch-for-warnings filterwarnings = ["error", "ignore::DeprecationWarning"] # Doctest python code in docs, python code in src docstrings, test functions in tests @@ -109,7 +106,6 @@ timeout = 3 [tool.coverage.run] patch = ["subprocess"] data_file = "/tmp/blueapi.coverage" -omit = ["src/blueapi/startup/**/*"] [tool.coverage.paths] # Tests are run from installed location, map back to the src directory