From a3102f30fc53a4f772e51a7526c9403f77887d0d Mon Sep 17 00:00:00 2001 From: "Kevin Bloch (@codingthat)" Date: Fri, 28 Mar 2025 14:48:17 +0100 Subject: [PATCH] Add test runner setup instructions to README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I'm not sure if this is the standard for Exercism or if it would be better to have `bin/verify-exercises` point somewhere else — maybe include the test runner as a Git submodule? Anyway, the added instruction at least helps get started for the moment. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 164c8de..77df910 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ Exercism exercises in GDScript. ## Testing +To set up for testing, clone https://github.com/exercism/gdscript-test-runner and move its contents to `/opt/test-runner`. + To test the exercises, run `./bin/verify-exercises`. This command will iterate over all exercises and check to see if their exemplar/example implementation passes all the tests.