From 666a15951ea117e96836250e7b402b9cdf164990 Mon Sep 17 00:00:00 2001 From: Allen Hill Date: Fri, 9 Aug 2024 10:47:43 -0700 Subject: [PATCH] Don't read data when testing groups/parameters --- test/write.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/write.jl b/test/write.jl index 58b2766..777ec6a 100644 --- a/test/write.jl +++ b/test/write.jl @@ -35,7 +35,7 @@ end @testset "artifact\"$art\"" for art in artifacts allfiles = filter(contains(r".c3d$"i), readdir_recursive(@artifact_str(art); join=true)) @testset "File \"$(replace(fn, @artifact_str(art)*'/' => ""))\"" for fn in allfiles - f = readc3d(fn) + f = readc3d(fn; paramsonly=true) gs = keys(f.groups) for g in gs @@ -52,7 +52,7 @@ end @testset "artifact\"$art\"" for art in artifacts allfiles = filter(contains(r".c3d$"i), readdir_recursive(@artifact_str(art); join=true)) @testset "File \"$(replace(fn, @artifact_str(art)*'/' => ""))\"" for fn in allfiles - f = readc3d(fn) + f = readc3d(fn; paramsonly=true) fio = open(fn) gs = keys(f.groups) ps = [ (g,p) for g in gs for p in keys(f.groups[g].params) ]