Skip to content

Commit

Permalink
another windows attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
teuben committed Jan 8, 2025
1 parent 4a362aa commit 3de625d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/dysh/fits/tests/test_gbtfitsload.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import glob
import os
import shutil
import pathlib
from copy import deepcopy
from pathlib import Path

Expand Down Expand Up @@ -695,7 +696,8 @@ def test_online(self, tmp_path):
s = sdf.summary()
n = len(sdf._index)
assert n == 4
os.remove(o1)
# os.remove(o1)
pathlib.Path.unlink(o1)
#
shutil.copyfile(f2, o1)
s = sdf.summary()
Expand Down

0 comments on commit 3de625d

Please sign in to comment.