Skip to content

Commit

Permalink
Add debugging for action
Browse files Browse the repository at this point in the history
  • Loading branch information
timj committed Aug 17, 2023
1 parent d42e577 commit 11e9ab8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/test_datastore.py
Original file line number Diff line number Diff line change
Expand Up @@ -1119,6 +1119,11 @@ def test_repeat_ingest(self):
with open(path, "w") as fd:
yaml.dump(metrics._asdict(), stream=fd)

print("Temp path is = ", path)
r = ResourcePath(path)
print("As resource path = ", r)
self.assertTrue(r.exists())

datastore.ingest(FileDataset(path=path, refs=v4ref), transfer="direct")

# This will fail because the ref is not using UUIDv4.
Expand Down

0 comments on commit 11e9ab8

Please sign in to comment.