From cfc77c4e36e527e75f33214b7d92514eb5d1f767 Mon Sep 17 00:00:00 2001 From: Hal Wine Date: Thu, 1 Oct 2020 14:33:48 -0700 Subject: [PATCH] Special case --doctest-modules for CI --- github/vscode-debug-wrapper.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/github/vscode-debug-wrapper.py b/github/vscode-debug-wrapper.py index 6d05df8..bf992da 100755 --- a/github/vscode-debug-wrapper.py +++ b/github/vscode-debug-wrapper.py @@ -27,5 +27,8 @@ # N.B. since that will also happen in pytest's doctest mode, that # special case is dealt with in the parse_args function branch_retrieve_github_data.main() +elif sub_command == "--doctest-modules": + # Another special case + pass else: raise SystemError(f"Unknown sub command '{sub_command}'")