From dadb7e99ce7dfcedd05bd44bcd2d8e96a5dce85c Mon Sep 17 00:00:00 2001 From: Alomir Date: Wed, 15 Jan 2025 13:37:40 -0500 Subject: [PATCH] Updates CONTRIBUTING.md with test update script command --- CONTRIBUTING.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2d1d609..fa5d2e1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -26,3 +26,9 @@ make testrun # Clean after tests are run make testclean ``` + +If changes are made to the `modelStructure.h` file and unit tests are failing, try running the update script as shown below. Consider running this script even if unit tests _are not_ failing. +```shell +# Run this command from the root directory to update unit test versions of modelStructures.h +tests/update_model_structures.sh +```