Skip to content

Commit

Permalink
Don't read data when testing groups/parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
halleysfifthinc committed Aug 9, 2024
1 parent b923ebe commit 666a159
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/write.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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) ]
Expand Down

0 comments on commit 666a159

Please sign in to comment.