Skip to content

Commit 52b969a

Browse files
committed
testing gha flow
1 parent 68fc3fb commit 52b969a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/utils/utils.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,12 @@ def all_versions(filename):
3131
}
3232
"""
3333
repo = git.Repo()
34+
print("\n`---{}---`".format(self._testMethodName))
35+
3436
versions = {
3537
'current': get_json(filename)
3638
}
39+
print("\n`---{}---`".format(repo.tags))
3740
for tag in repo.tags:
3841
version_dict = repo.git.show('%s:%s' % (tag.name, filename))
3942
versions[tag.name.strip('v')] = json.loads(version_dict)

0 commit comments

Comments
 (0)