From 670b154612a8a8ef30354199fb0a159f83c30e6a Mon Sep 17 00:00:00 2001 From: salotz Date: Wed, 6 Mar 2024 15:15:18 -0500 Subject: [PATCH 1/2] WIP --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index cc6c47b..365f1b4 100644 --- a/README.md +++ b/README.md @@ -114,6 +114,12 @@ def test_func(): This package adds a couple new options to the `pytest` CLI: +`--checklist-disabled` (default `False`) + +When this is given will explicitly disable this plugin from all +collection and reporting. Useful for running non-unit tests. + + `--checklist-collect=STR` (default `src`) This explicitly indicates to collect target coverage results. If not specified, From 65ffed2ec001bb15bb86ef5468e7c356ea516893 Mon Sep 17 00:00:00 2001 From: salotz Date: Wed, 6 Mar 2024 15:18:25 -0500 Subject: [PATCH 2/2] ci: remove python 3.8 from test matrix --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 789dafa..299c8f7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,7 +33,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v4