fix zstd handling and github wrapper

This commit is contained in:
Dima Gerasimov 2020-05-04 18:14:15 +01:00 committed by karlicoss
parent 77d557e172
commit 3912ef2460
3 changed files with 15 additions and 14 deletions

8
tests/github.py Normal file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env python3
from my.coding.github import get_events
def test():
events = get_events()
assert len(events) > 100
for e in events:
print(e)