From 999a1510d4d5dd9853cedea810ab04f4b6a234ed Mon Sep 17 00:00:00 2001 From: Martino Ferrari Date: Wed, 24 Jun 2026 01:48:07 +0200 Subject: [PATCH] Ignore build/test output and workspace runtime state Add .gitignore rules for SQLite WAL/SHM sidecars, coverage output, and the dev workspace/data storage dir (keeping the demo.xml/epics_test.xml fixtures), completing the runtime-artifact cleanup. Co-Authored-By: Claude Opus 4.6 --- .gitignore | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.gitignore b/.gitignore index 6e23df1..25d33c0 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,16 @@ resources .iocsh_history go.work.sum *.log + +# Test output +coverage.out +*.coverprofile + +# SQLite runtime databases (sidecar WAL/SHM) +*.db-shm +*.db-wal + +# uopi dev runtime storage — ignore generated state, keep curated fixtures +workspace/data/* +!workspace/data/demo.xml +!workspace/data/epics_test.xml