This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
master[=]!petalmd.ios + $> curl --data-binary @codecov.yml https://codecov.io/validate | |
Valid! | |
{ | |
"comment": { | |
"layout": "header, diff, changes, sunburst, uncovered", | |
"behavior": "default" | |
}, | |
"coverage": { | |
"precision": 2, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
API_KEY = 'YOUR_API_KEY_HERE' | |
def get_total_pages(client) | |
list = client.get_signature_requests(page_size: 100) | |
list.data["list_info"]["num_pages"] | |
end | |
def get_all_requests(client) | |
signature_requests = [] | |
page = 1 |