From e342d3aad1f7030dfdd2a8e4ff26d3d4a2eb4788 Mon Sep 17 00:00:00 2001 From: Ryan Blue Date: Fri, 23 Aug 2024 02:32:35 -0400 Subject: [PATCH] ignore tests --- upstream_utils/apriltag.py | 1 + 1 file changed, 1 insertion(+) diff --git a/upstream_utils/apriltag.py b/upstream_utils/apriltag.py index de91237f297..f0337945698 100755 --- a/upstream_utils/apriltag.py +++ b/upstream_utils/apriltag.py @@ -39,6 +39,7 @@ def copy_upstream_src(wpilib_root): src_files = walk_cwd_and_copy_if( lambda dp, f: (f.endswith(".c") or f.endswith(".cpp")) and not dp.startswith("./example") + and not dp.startswith("./test") and not f.endswith("getopt.c") and not "py" in f and not remove_tag(f),