From 8e1c1348e9c29eb42df5ba1fb2808cff5734b3f4 Mon Sep 17 00:00:00 2001 From: David Stephens Date: Sun, 25 Feb 2024 15:47:00 +0000 Subject: [PATCH] Update vscode tasks --- .vscode/tasks.json | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 2b1ffa70..8eab5ccd 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -28,16 +28,10 @@ "group": "test" }, { - "label": "Serve docs locally (mkdocs serve)", + "label": "Run pytest", "type": "shell", - "command": "mkdocs serve", + "command": "pytest --molecule-base-config=../../tests/molecule/base.yml", "group": "test" - }, - { - "label": "Deploy docs to GitHub (mkdocs gh-deploy)", - "type": "shell", - "command": "mkdocs gh-deploy", - "group": "build" } ] }