From e0289bb10141aafdf567fb4dafa18e416264e93d Mon Sep 17 00:00:00 2001 From: James Hutchison <122519877+JamesHutchison@users.noreply.github.com> Date: Tue, 28 May 2024 11:21:00 -0700 Subject: [PATCH] Add warning about VS Code behavior --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index d0d0e33..2f34dcd 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,15 @@ A hot reloading pytest daemon, implemented as a plugin. +## Notice - Busted VS Code behavior - 5/28/2024 +It was noted that VS Code does not properly detect tests finishing. This is due to buggy experimental behavior that you opt-in to. To opt-out, add to your settings: + +```json +"python.experiments.optOutFrom": [ + "pythonTestAdapter" +], +``` + ## Features - Uses the [jurigged](https://github.com/breuleux/jurigged) library to watch and hot reload files - Caches test discovery in many situations