From 9029b9c4b608dd89bdf65795d4c47c6ba57165e0 Mon Sep 17 00:00:00 2001 From: Ethel Morgan Date: Wed, 12 Jul 2023 13:07:31 +0100 Subject: [PATCH 1/2] Ignore build/ directory at the repo root, and Python .egg-info anywhere --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index fd966d2cc..352b2940d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ js/external todo.org *~ _build/ +/build/ .merlin ._d/ ._ncdi/ @@ -83,7 +84,7 @@ site # python *.pyc dist/ -python/*.egg-info +*.egg-info .idea # eclipse From 78dc999f25f5f099aaffedb2983f838b5a244112 Mon Sep 17 00:00:00 2001 From: Ethel Morgan Date: Wed, 12 Jul 2023 13:09:18 +0100 Subject: [PATCH 2/2] Ignore temporary integration test outputs --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 352b2940d..17f9cfa60 100644 --- a/.gitignore +++ b/.gitignore @@ -50,6 +50,11 @@ models/test_suite/error models/test_suite/*/*/output/profiling.txt models/test_suite/*/*/output/profiling.html models/test_suite/*/*/output/compression_status.txt +/tests/integration/error +/tests/integration/*/*/error +# Ignore all test outputs except the reference files. +/tests/integration/*/*/output/* +!/tests/integration/*/*/output/*.ref tests/integration/*/*/output/*.xml tests/integration/*/*/output/*.html