From 29edfe8adbdf5178f4957d10e85dd37748aaec10 Mon Sep 17 00:00:00 2001 From: "Adam J. Stewart" Date: Sat, 19 Mar 2022 10:31:03 -0500 Subject: [PATCH] gitattributes: allow diff of test data (#470) * gitattributes: allow diff of data.py files * Allow diffs of all text files, not just data.py --- .gitattributes | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index ed7c1989f..597f9b1d4 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,4 @@ # Do not change line endings on test data, it will change the MD5 -/tests/data/*/** binary +/tests/data/*/** -text +# Test data generation files are fine though +/tests/data/**/data.py text