# HG changeset patch # User Boris Feld # Date 1534589144 -7200 # Node ID 966950954fda97f6127a7ee9287c9f6504d9af45 # Parent f1186c292d03e2608b59be1b576ec7bca1ba0d56 tests: add a `tests/artifacts/` directory That directory is meant to cache large items used by tests that are slow to generate. See 'PURPOSE' file for details and next changesets for a first user. diff -r f1186c292d03 -r 966950954fda tests/artifacts/PURPOSE --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/artifacts/PURPOSE Sat Aug 18 12:45:44 2018 +0200 @@ -0,0 +1,9 @@ +This directory is meant to cache artifacts useful for tests (such as bundle). + +Those artifacts need to be cached because they are slow to regenerate on each +test but too large to be tracked within the repository. They are not expected +to change between each run and can be cached. + +The `./scripts/` contains code to generate the artifact while the `cache` +directory contains resulting artifact. +