Snapshot properties
▶Changelog
Snapshots properties can be declared in .yml
files in:
- your
snapshots/
directory (as defined by thesnapshot-paths
config) - your
models/
directory (as defined by themodel-paths
config)
We recommend that you put them in the snapshots/
directory. You can name these files whatever_you_want.yml
, and nest them arbitrarily deeply in subfolders within the snapshots/
or models/
directory.
snapshots/<filename>.yml
version: 2snapshots:- name: <snapshot name>show: true | false- <test>- ...columns:- name: <column name>- <test>- ... # declare additional tests- ... # declare properties of additional columns- name: ... # declare properties of additional snapshots
▶Changelog