From 2f90ce12024170d258e0d4fe0d9f1999edc00233 Mon Sep 17 00:00:00 2001 From: Alec Hammond Date: Thu, 27 Aug 2026 15:20:36 -0700 Subject: [PATCH] Ignore Julia environment and coverage artifacts Running Pkg.instantiate() in src/julia/SSP or examples/julia writes a Manifest.toml, which should not be tracked for a package. Also ignore the coverage and allocation files that `julia --code-coverage` / `--track-allocation` leave next to the sources. --- .gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index 163b9ba..b9f2d3f 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,13 @@ poetry.lock Pipfile.lock .pdm-python +# Julia environments and artifacts +Manifest.toml +Manifest-v*.toml +*.jl.cov +*.jl.*.cov +*.jl.mem + # Test/tool caches .pytest_cache/ .mypy_cache/