Skip to content

Commit

Permalink
Merge pull request #51 from chenyangkang/enhancement
Browse files Browse the repository at this point in the history
fixing github action RAM/CPU use problem
  • Loading branch information
chenyangkang committed May 12, 2024
2 parents 0d172ab + 94df0a1 commit 7dc256f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/test_makegif.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{
"x": np.random.uniform(low=-180, high=180, size=size),
"y": np.random.uniform(low=-90, high=90, size=size),
"DOY": np.random.uniform(low=1, high=366, size=size),
"DOY": [int(i) for i in np.random.uniform(low=1, high=366, size=size)],
"dat": np.random.uniform(low=1, high=1000, size=size),
}
)
Expand All @@ -21,7 +21,6 @@ def test_make_gif():
tmp_dir = "./stemflow_test_make_gif"
if not os.path.exists(tmp_dir):
os.mkdir(tmp_dir)

make_sample_gif(
fake_data,
os.path.join(tmp_dir, "FTR_IPT_dat.gif"),
Expand All @@ -41,7 +40,6 @@ def test_make_gif():
dpi=100,
fps=10,
)

shutil.rmtree(tmp_dir)


Expand Down

0 comments on commit 7dc256f

Please sign in to comment.