From d57c98713af4317af47ed0903d9cfb74b98fefdb Mon Sep 17 00:00:00 2001 From: Ian Stapleton Cordasco Date: Sun, 31 Oct 2021 16:40:59 -0500 Subject: [PATCH] Update attributes available on Pull Requests This ensures that all documented attributes are available on Pull Request related objects. --- src/github3/pulls.py | 23 +- tests/cassettes/GitHub_pull_request.json | 2 +- tests/cassettes/Issue_pull_request.json | 2 +- ...rd_retrieve_pull_request_from_content.json | 2 +- tests/cassettes/PullFile_contents.json | 2 +- tests/cassettes/PullRequest_close.json | 2 +- tests/cassettes/PullRequest_commits.json | 2 +- .../cassettes/PullRequest_create_comment.json | 2 +- .../cassettes/PullRequest_create_review.json | 2 +- .../PullRequest_create_review_comment.json | 2 +- .../PullRequest_create_review_requests.json | 2 +- .../PullRequest_delete_review_requests.json | 2 +- tests/cassettes/PullRequest_diff.json | 2 +- tests/cassettes/PullRequest_files.json | 2 +- tests/cassettes/PullRequest_is_merged.json | 2 +- tests/cassettes/PullRequest_issue.json | 2 +- .../cassettes/PullRequest_issue_comments.json | 2 +- tests/cassettes/PullRequest_patch.json | 2 +- tests/cassettes/PullRequest_pull_reviews.json | 2 +- tests/cassettes/PullRequest_reopen.json | 2 +- .../PullRequest_review_comments.json | 2 +- .../PullRequest_review_requests.json | 2 +- tests/cassettes/PullRequest_single.json | 2 +- tests/cassettes/PullRequest_update.json | 2 +- tests/cassettes/PullReview_submit.json | 2 +- .../RepoCommit_associated_pull_requests.json | 2 +- tests/cassettes/Repository_create_pull.json | 2 +- .../Repository_create_pull_from_issue.json | 2 +- tests/cassettes/Repository_pull_request.json | 2 +- tests/cassettes/Repository_pull_requests.json | 2 +- .../Repository_pull_requests_accept_sort.json | 2 +- tests/cassettes/ReviewComment_reply.json | 2 +- tests/integration/test_pulls.py | 14 +- tests/unit/json/pull_request_example | 399 +++++++++----- tests/unit/json/short_pull_request_example | 520 ++++++++++++++++++ tests/unit/test_pulls.py | 21 +- 36 files changed, 853 insertions(+), 186 deletions(-) create mode 100644 tests/unit/json/short_pull_request_example diff --git a/src/github3/pulls.py b/src/github3/pulls.py index 0c636b189..450844674 100644 --- a/src/github3/pulls.py +++ b/src/github3/pulls.py @@ -195,6 +195,7 @@ def _update_attributes(self, pull): from . import orgs self._api = pull["url"] + self.active_lock_reason = pull["active_lock_reason"] self.assignee = pull["assignee"] if self.assignee is not None: self.assignee = users.ShortUser(self.assignee, self) @@ -213,6 +214,7 @@ def _update_attributes(self, pull): self.id = pull["id"] self.issue_url = pull["issue_url"] self.links = pull["_links"] + self.locked = pull["locked"] self.merge_commit_sha = pull["merge_commit_sha"] self.merged_at = self._strptime(pull["merged_at"]) self.number = pull["number"] @@ -710,9 +712,12 @@ class PullRequest(_PullRequest): def _update_attributes(self, pull): super()._update_attributes(pull) self.additions_count = pull["additions"] - self.deletions_count = pull["deletions"] + self.auto_merge = pull["auto_merge"] + self.author_association = pull["author_association"] self.comments_count = pull["comments"] self.commits_count = pull["commits"] + self.deletions_count = pull["deletions"] + self.draft = pull["draft"] self.mergeable = pull["mergeable"] self.mergeable_state = pull["mergeable_state"] self.merged = pull["merged"] @@ -721,6 +726,22 @@ def _update_attributes(self, pull): self.merged_by = users.ShortUser(self.merged_by, self) self.review_comments_count = pull["review_comments"] + requested_teams = pull["requested_teams"] + self.requested_teams = [] + if requested_teams: + from . import orgs + + self.requested_teams = [ + orgs.ShortTeam(team, self) for team in requested_teams + ] + + requested_reviewers = pull["requested_reviewers"] + self.requested_reviewers = [] + if requested_reviewers: + self.requested_reviewers = [ + users.ShortUser(user, self) for user in requested_reviewers + ] + class ShortPullRequest(_PullRequest): """Object for the shortened representation of a PullRequest. diff --git a/tests/cassettes/GitHub_pull_request.json b/tests/cassettes/GitHub_pull_request.json index a0ba0ecc1..8bf733536 100644 --- a/tests/cassettes/GitHub_pull_request.json +++ b/tests/cassettes/GitHub_pull_request.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"headers": {"User-Agent": "github3.py/1.0.0a4", "Content-Type": "application/json", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Accept-Charset": "utf-8", "Connection": "keep-alive"}, "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/119", "body": {"string": "", "encoding": "utf-8"}, "method": "GET"}, "recorded_at": "2017-02-10T22:20:32", "response": {"headers": {"Cache-Control": "public, max-age=60, s-maxage=60", "X-RateLimit-Limit": "60", "Vary": "Accept", "X-Content-Type-Options": "nosniff", "Date": "Fri, 10 Feb 2017 22:20:32 GMT", "X-RateLimit-Remaining": "59", "Content-Type": "application/json; charset=utf-8", "Server": "GitHub.com", "X-XSS-Protection": "1; mode=block", "Access-Control-Allow-Origin": "*", "Transfer-Encoding": "chunked", "X-RateLimit-Reset": "1486768832", "X-GitHub-Request-Id": "B90D:5521:24107F6:2D51AEF:589E3CAF", "ETag": "W/\"465de9f3c428855d927731e3a10753de\"", "Content-Security-Policy": "default-src 'none'", "X-Served-By": "c6c65e5196703428e7641f7d1e9bc353", "Content-Encoding": "gzip", "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Status": "200 OK", "X-Frame-Options": "deny", "Last-Modified": "Wed, 01 Feb 2017 16:19:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-GitHub-Media-Type": "github.v3; param=full; format=json"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/119", "status": {"message": "OK", "code": 200}, "body": {"string": "", "encoding": "utf-8", "base64_string": "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"}}}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/119"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 00:35:37 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"c23c9d7093f65f10fd04b46f573ce9d248d358ab2b7bdf03f04ceb80d7365d77\""], "Last-Modified": ["Sat, 30 Oct 2021 19:31:07 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["59"], "X-RateLimit-Reset": ["1635644136"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["1"], "Accept-Ranges": ["bytes"], "Content-Length": ["2937"], "X-GitHub-Request-Id": ["E120:2F70:A7F981:13E9F4E:617DE4D8"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/119"}, "recorded_at": "2021-10-31T00:35:37"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/Issue_pull_request.json b/tests/cassettes/Issue_pull_request.json index 0f7bab380..eea6431da 100644 --- a/tests/cassettes/Issue_pull_request.json +++ b/tests/cassettes/Issue_pull_request.json @@ -1 +1 @@ -{"http_interactions": [{"recorded_at": "2017-02-11T13:54:10", "request": {"headers": {"Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate"}, "body": {"encoding": "utf-8", "string": ""}, "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/301", "method": "GET"}, "response": {"headers": {"Server": "GitHub.com", "Content-Type": "application/json; charset=utf-8", "X-RateLimit-Remaining": "59", "X-XSS-Protection": "1; mode=block", "X-RateLimit-Limit": "60", "Access-Control-Allow-Origin": "*", "ETag": "W/\"f57fa42b61e724667449c26f65f8b633\"", "Date": "Sat, 11 Feb 2017 13:54:10 GMT", "Transfer-Encoding": "chunked", "Content-Security-Policy": "default-src 'none'", "Content-Encoding": "gzip", "X-RateLimit-Reset": "1486824850", "Last-Modified": "Sat, 11 Feb 2017 13:18:37 GMT", "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Status": "200 OK", "Vary": "Accept", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Cache-Control": "public, max-age=60, s-maxage=60", "X-GitHub-Request-Id": "B5FF:550C:BDEB60:EEB12C:589F1782", "X-Frame-Options": "deny", "X-Content-Type-Options": "nosniff", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Served-By": "dc1ce2bfb41810a06c705e83b388572d"}, "body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1ZbW/bNhD+K4QGNBvgWJZf8qK6Gfph2AIM2FCkGLC4sGmLtrlKpEZSzjyj/30PKVmWtNSN7WDtgOaTLN09PN0995CnbLxMxV7oLY1Jdej7NOXtBTfLbNqeycRXLJXa13yR0BVXme72/fxpr52ufa51xrTf6wRey3Om3Ei1Hh8PCZyYTlmsT8CohOXnYBtf0IR9ADjeKWHCPBf8Fg7IbPWMuDkYUJcmiRupqFTnY3VJszguqsIjL+xfXl0OutdByxNZMmXKC1Gxlme4iRlK/yM3P2XTH4RhKlVcs5C8jiKCGhJqjOLTzLCXRC/lA+GCjFFmhcAybXE2XiwXXAAk0XSqaCLxyC7Z6wy6F1ctj66ooapZTHdTFzyzSDOJ1YVxlMsQuXX+fvWqB7SFKjAsrGdX3sdXC6b9SjD7E1gxnMs4lg/wbgZbb4j6An7phcDyay4WRyDAa+NLs2TIFV7BUnXB9ad42gjGeWzQoNqMeWQxNPKsWHRQQIUPwnkQiGTjNMCBZVM9Uzw1XIrDslTzBJJUCyr43/RwJHhqADitOeitnAc8n9KmjbTmLhsfzbGis7VNhWIzxldI7BFwDV+gmXVq+/CtbSmkmRs2plFi22pOY80+bDXRC+/fuZoaaz6LpWYRHGI5e4+L3BgtpyELgsFEQAZ2v3XunvCYaSMFnm/299J+7S9xtH+BIPb32ceEqgRxGKcrfzWoQvuB6zQwuOj2OjsFvNjpX9DuwChiJbmR3Fu3sxGpyJxRkylcKxYj8RExkqBP7U9GNSNyTlZQDfQEyYFmCh6yJo7V1y/i6fY7VzaeowQydz5BIBsBPb14iP4goawV/mixfATlFMFssPEE0awhPZ9w1mGrsov8HyyeNbRDBbTmfLiI1tyfR0gbEdWEGOn5tJjKlIlxfnT1wmucCZ2Qlne6/Z3GWlNgupaGCTWQhm4n6J13rs57wV0wCPuDcHD9O2yyNKrZXJ53gvMubC7DzkU4uLI2UcbGErKeC3OxrgW1NyDz5XEyhDI0F+2fB8F5Z3AXXIdBEA56jy3qbLrXd52eXbQfWJvKMjb2x0zseREHuz8heQjmpG3BQm0ngqfLSnWoqBxeIz6fH3/6bVt3JCClZrY8Acb5eyjPVEbrsX0psGCY3vyGMUlmBrsB1+TXNy3CzZkmQhqCjWFt94kFs08ZGc5kxG5wcB367orMlUwILe43z99bIzn9g81Mm9h1gN2yUIoRLEbJ2zc/707nbfI61vmuhHhShIRNKV/THde3gEuqyZQxQXiSKonjS3vopzcjMVz2my8TDn3cxKNUsZsc6laQ++BdaJ2lMqQYA0diJOyTLp7kt8ir7bN2882+PbNjJqbMYoZJ1mB8SsXaHvzPvtti9UqskfglM/f294vYvMzhyG5SIfedNrL67sXCvESseXLxTojZhn5zV+Z+5DnLkbfNBUYZWxk6RR5IkTWuxRkKxhSGnnhNcAycZ3Gb3BoSS/lek5i/h4ewiWdJasgD8pnQiNlSu/nIIqIyLYKZCRUjC3AhYRrqQrK0kewtbf4vmd5Tucfyj75z7WLYX1Y0n94rdu4s2qNJH3JaR7heIP9ugpFoRBfmlP58ZB9+lOng9UhYWpeEtkP5f83kPGMlg7/EdO2j601BzoN4OQExJ1tmTprUnJzIzYkj5+RRdn6DP7cJVDYbUHQkJpPJl5j6XJPBVBdfTtdJydfJ5yFsmcQKa7/YDO4lbxH17mQ3XVc/xFWPx7Cxs+/XWdN+2nvih7naeFF+0jv641wN7qQPdPWhMP+w9wwf6eqwX2fN4h8f+TfAE2fND/8As5AAul4ZAAA=", "string": ""}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/301"}}, {"recorded_at": "2017-02-11T13:54:10", "request": {"headers": {"Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate"}, "body": {"encoding": "utf-8", "string": ""}, "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/301", "method": "GET"}, "response": {"headers": {"Server": "GitHub.com", "Content-Type": "application/json; charset=utf-8", "X-RateLimit-Remaining": "58", "X-XSS-Protection": "1; mode=block", "X-RateLimit-Limit": "60", "Access-Control-Allow-Origin": "*", "ETag": "W/\"ea94f2ea68b3a02e62094728084fcaa0\"", "Date": "Sat, 11 Feb 2017 13:54:10 GMT", "Transfer-Encoding": "chunked", "Content-Security-Policy": "default-src 'none'", "Content-Encoding": "gzip", "X-RateLimit-Reset": "1486824850", "Last-Modified": "Fri, 27 Jan 2017 23:37:51 GMT", "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Status": "200 OK", "Vary": "Accept", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Cache-Control": "public, max-age=60, s-maxage=60", "X-GitHub-Request-Id": "B5FF:550C:BDEB64:EEB12D:589F1782", "X-Frame-Options": "deny", "X-Content-Type-Options": "nosniff", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Served-By": "4c8b2d4732c413f4b9aefe394bd65569"}, "body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1cbW/byBH+K4QKXFpUFt9EyWJ8vt6H4hqgQIODDwUaB/KKXEqsKZIgKfsUIf+9z+ySEkmLtETqkBRwAAcSufPs7Ozb7DM72g02STCwB6ssi1NbVVnsj5Z+ttosRk60VhMeR6ma+ss1e/KTTWqMVfnWHMVbNd4EQaqamj4YDnx3YBvmzJhNjckQcOtgXkUuobbh5XCu73ndAUYkDqViljmrHjBCnhqXphtewznLUgKgMFW4WS94MrBhuOEgzVjG0QFOEKXcRV1B5Dzig+2xIOXDQeZnAb3/xc/+sVn8Pcx4Eid+ym3lZ9dVYGKFZVniLzYZf6+kq+hZ8UNljn5LgLVJqZ4dMJd+CJB1yhYJW0d5f5maZUyuhwP2xDKW1NsnHqb5aCAkJ0LtYSYGxgb9RMI/Pf1oAm2Z5Bg0DAZUc9uoIrBULSnTPlxKBb0oCKJnSNeVrQ7bagXqXgqKyc9+uOyAAKmdGmUrDluhCV+p4X6anaeMkNhhGqXZ3HcJA0MgSbh7lkK5DNR5DqHJTsxUAbZZpE7ix5kfhecpVpEEUpQsWeh/YecjQTIFgFg8zmqVkIAkf8I4O09UiuxUTI4n5mzJFAl3uP8Ew3aAq8kCLdvGNA9/oykFM/sZnzN3TdNKzNSvw8Eicrco8W8sn9EmU7KVnyoffx0qfvYuVcIoUzhLt0oWKUtOb7nygFnyoHhJtFaY8lCf4Q9KtPgvd7KRQohAGZJQwhXAMuW3X/95mPkj5ecgjQQmao5ReeQpD2IVeFBWLFUWnIeKv46TCPYY3Yd/wj8BW1LUvg/vw4eHh/vwQ6h80j/bJBAlmZKv+PSa3hh4Ix8pPxbvRnXl//yOdhRsKPmyv95i1YhZuKXV491fCixzj3Uf/muTfaLvNxJLOax1yidtBFN9vs31uw/vyHr3A/H4fvBAax41ni3QvsIEfhq+g515gtUx2CqYsd4mGCkfMiWIosdUCfxHSIRkRb6OM+UZdlozl1MPiYWUEGHmoYLFFeZXlujCNU+xTCubuGzEoqu/Zwu2dMferhjXTsKxH7lzlmEkG5o+vtL1K82602e2rtuW+R+U2cTuyzLG7E4zbW1ij3UqI7ezKkytyJony7ymEI7EcCAezDE+1n42T1cMGiwsbbqYGI4+HS8Ma8a98YyZFvfca66PNYuZs6k2thzaglgKtyLkmKMSrfieDuxPnwHuBzzNohDvd+27U7vPs8dJ1Qlqbd+5mhydPYjACNiCB6+sdqcrpUo44NJePNYnhqkNB4XPAd+s8Cj0kYZCLt9vF7D3B+GnKFGieBgHmwSfEx5Qb9OsoAmBr1jGMMk85Qn7MHYZRQKJkRNV3I1y83N9jLF2Tfp0cjmkcA+Xo6bQ6Z0H7c9yPSod39n9OILSxwWpjcYebkgF6XKuSBW27MjA/me7IxW0c12SivD5bklF/DKuSU2jimsD87zunkQxD+fyIDKwZ/slunhijA+HESoKzPpmYF5p11emfqdb9tiyrdmxzWB6pelXBspMaTOwrqmMi8NTBEdJLsylrYEewHGSS36vFXB/FFVzMFSb8CefP4sN5XV3sn2BrcIT2gv8dkf3FPhC0Z0qV2vyYS+h/OHwKYyTa08HT/hEvaxeYKiut7A8faKziWa5hrNYXOv4z7rWXTZx2cwyGcOy7yzQohVn2JdwJqVdr3QmtesuJNxrcSaCE5EfcOcsdOee/7twbOdZBCchep77megLD1i9IKTHcUZL3k7XxCW8na6PU2c1DuLtdH1gfEBWnL990QpK64YgGq1rw7QM0GchW9OpPD+igpTEWoBjXjDPXxTcUYm2RAlBmrwRY29T923qnsuzdZm6gpMjljvntNvPXcenbPWc+nEL6ioEhQM6O9kqHg6sPlHjHnNwQlKeiTCj02pOJf388cMTcQQo9ziws2QDYr2VoZbu2nFNCOQkr+mIOGYchKHJI992xiDZnYr/c/7YASkO5iuh43dn0ArIDo7iAZP80IyzdWdsIUyuH/Fup/jJxywnhAEiYzGnULqNnajmHnFxMDu42/1gpTR03HNPXRu7B9ipRaQBIz10Vqf568fsV8jvVPlJ9Cpbdu4PkgXEIogWnTGwbasCYKfC+5bxlGzeRytCJPkKIA4HvVQk+T1glvDunSDUI4A93DnHsGPduj+C7XILBixcbtiyu457APQucTtL9uXVgFvzVDsgAI4iiCJW2WuhOmCQhpImQkC1cxeXIA6AIoDWdfqWnX3RbKK0O+uXi1eGdE9IGod12HOohmMj8Rh9IRfr/E1Xa+ar9TH8PCTdw7QipJ2qu78i1r/KGZeYJSdF+xusQOLqbgGW/OtoNNoR4UHAIrzRWVMpDRiWOCtENbsac1fIwxNZs0xEjj1Sz8WhKIiY21nDPQDAZJd11VFKl2kwwb91hRPCZbRDDKcr5AGhjIsYr+/5zikR8+YFswKy+yn1Q4cPGeJjGFaZ7/gYp3BxqcdOjxsdG6hSGurjBE1oeWCns5UL+Z0qbzW4PA6i7cnM6zEVSxC0ir4MTWpXxvROHyPKZY+NY2w0wpcoY9xpoKsntilCk/EmXZUinBYV0aZURL8Gr01FsDzmIwOfDkFsrED7WyslQoGuyEAoTYurRvj+N/zll6jsI03LRUCFh/WZfBBsq+upvje1i0G9VbTmMfwCsCWVWLAZb0ewrIvjkhs56QiREpVa439B0YluIlJQ8gKcaBMiNIwI3jPdjaJd9/Co8BwKph83D/YBh+Loh0eHhSI/ilG5Z//RPxwQ8YB0Rew2l5OHrkNVaz9JovzKkgwrlMIbJZXkeYv0rYQ/SvqLxrjcY5sgm0vXGCZy4csHUTz4Svc6sJKXGetyJMYuChYU9OG75JMtg5meqXHNcryxOTauLT6dWrPpzNN0TwcrblkagtpTmLzOJ5frwWtBfL2FT3H/68TbW5WI2f7eV+cbXBW4Xre4Kkhv4dPyhVPJmn+P4dMy/2xOdW2qn0A/18YMbQl0cxaz+QUF/TbbxfXit8sSJ97brC4ib5cl8hvrRxaQP56ybp7mF6Stc0/oBN66WZ2TuesGiLP56yac3hx2E/CleOwm/LO57Cagrnx2E94FOO0m6G68dhNaT267CbYPv92EeS7H3YRDdFt3nrsNtTPX3Qbaje9uQ+zOeTeh9uO9m1C7c99NiL347ybQMo9OZ/XzOPAm1H48+Cuogk+HrmcQ102IdeKa2JoLwNIkrUMXnPMpPGGbusQxl5nCs3nxJvALceNN8AW/3o0fb0ZFKkhPjrwJuwtP3oR1Ga68Cb0bX96E1oMzb4LsyZs3wV6IO2+C/yP486a6+nDoTZg9efQm2HYu3bjSzCvdpDQf67ohzQc3uw1w5XeGYZsz25wc4dJFEeLSDdtCttBrXHqDrq/x6e1ir3Dq7cJpG6/eIPqSW6dEasnH18l1n1JvJbWOxBwNzPNLbn1iIiW3zq6Lhwd+fSAvQFHVJY5dXmyiJ2dR7FKswrAbhkkpUydw7JOpvFYFql4IVWh2elm0BMEEakMr0z4P/BCXfHDLM+UBLnTvBit5sbtnejpIfLpzdgSwFDZp6F6R5S6y0oEiVtkjMF2TwfPkB3Elv2drc08Aih5u+QO+lgTRt5YjiRAvKrlMHS/D/YdMkcvUUJgKVzOob4sTRV/w/cnk5FQCEWRC8vBcDtLBTXx7ehLxjRO5/Bas0A36HZ+KfGL5/JfazwYUhfqlFktskYZRAL7MMr5RYyTs3qzG9cbYNyoe4lWc8FsJ9W0zjn8IsvfSUEeSjn9YZu+hqzQu2gSdSfVbSkGWyu/zkAtbfINs5Kqx9wnJ/yeWbktOPmJ/bHtiumT8d0pTPn2uYJYU06M+MXom24u5cDTV/mWW/bcd7K3p9TKzfj+gv01evfi5g/zXE5BS//2Zq2243mJwysz2/d0F8ZUt6Gdccg5//2ROmwVdyXD9JKOwYJ4Uv8APSeTZkkXGHl1TeLGZ49ma4eY7/vCjJA4L5+sIv30D6bymnNAY2AhWIp/OFz/mAVeNHLGA59/wzlnh2ihuxXiUJo/SX/8HsyIa5RlIAAA=", "string": ""}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/301"}}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/301"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 00:36:39 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"5e1f982719a1faec85e423a51440bfa0ef32b0e9c37bf56538d0536c6adda825\""], "Last-Modified": ["Sat, 30 Oct 2021 19:31:07 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["58"], "X-RateLimit-Reset": ["1635644137"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["2"], "Accept-Ranges": ["bytes"], "Content-Length": ["1682"], "X-GitHub-Request-Id": ["E122:75D0:A4BFAF:14210B4:617DE517"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/301"}, "recorded_at": "2021-10-31T00:36:39"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/301"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 00:36:39 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"362f9f37b03c69570a50c024e21f89b0404d918132c12db1ed9c7127dce0db71\""], "Last-Modified": ["Sat, 28 Aug 2021 15:53:23 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["57"], "X-RateLimit-Reset": ["1635644137"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["3"], "Accept-Ranges": ["bytes"], "Transfer-Encoding": ["chunked"], "X-GitHub-Request-Id": ["E122:75D0:A4BFBA:14210CF:617DE517"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/301"}, "recorded_at": "2021-10-31T00:36:39"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/ProjectCard_retrieve_pull_request_from_content.json b/tests/cassettes/ProjectCard_retrieve_pull_request_from_content.json index deb1535dc..ada643fdd 100644 --- a/tests/cassettes/ProjectCard_retrieve_pull_request_from_content.json +++ b/tests/cassettes/ProjectCard_retrieve_pull_request_from_content.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/1.2.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/github3py/delete_contents"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+2Y32/bNhDH/5VAr3Mt23Hc1EDQDUhXdEAbdMhD1xeDlmiLCSVqJGXPEfK/70tSv+wFkR3mYQ8BgkCmeB8eT3fH45UBi4P5xWh6OZucjwZBJmK6MEPB1+tP2xv+B48+f3ggP/7cRNn9+Ov19+m3uy8PX3+7ugowmaQUM2PKqaaLSGSaZlrhxargfFG9XTOdFMvzfBf+d14u2YZoMFaEKzoIxDajMpiXARdrlgHdCANqtBq/v5yML2YHeu5u7j/sfk5+L8iPPIk/883y7tP5zfWXf77d/mX0JFiEyEUhOZCJ1rmah6EbVKOhW6NQVFY7GEYiDYuwWuvj5moKxlpWFGscDBzQclaBnDRoKuxqn+iUH2jgXtv53ZkrwbnYQv5Q4WeXCBsxY3+LYNn6JQiIlaHQCYXFsI1Hs3mm9InqWJESG1Ma/mQgCt9A0vg0lSohKGRc47EMJc2FpRVLFUmWayayE1XbEwVKyDXJ2AN5AQqixt+NUicqYUUgSjcmZk4zipMpQxs+0c6YQ9KIsg2s+xLegTBwepebyL7pWMbYnCHMSZya0LQR+zhAOB3l108Ef0ybD4ilbhOmzvCnaZoLSSTjuzO4X3y23J1V0THMd2crIc8Y8gzC0XwuTFcaDgvl8Oa+SSTPBqc1fRtyT6hmWD3fpAeCcAQCat3TnSfJEMoQ/6s4ihDcZAkbadGXI/qU3EOVYfencSpNSeqpvEUAlQjha1GLAIopVdCj/Lxv+5akwjqcsiJdunx3TBD1wR0D+hKl2Dqj1NOSDaYM67S8lCSLEl9wTSlD92S/PFl7qmsIAC25WHqSEP2hxZShSog7jvTCX0PDNZQ9rKSrV1DXUBqslt7f3qpqMA0U56KGG3jqWlPCsrIsJ9m6IGtfboOBB5gTfE0eeuuZvnhqOYCaSk2yZfEaKbAlGW1dWYE84GvaFtRibbXy/Fnfa4ZO3WMNkaasr37oY1aQvUB4FbDx20O4+d1f8hyjsqGUYZu13cFQ8f2sXJ0Mta7dVeprjt8CNSUsf8mJTkxWw2I5kdSXayFhuSQoz4bDYZlQYsvvlErvuHYMwIiMEpSbfrqWNQW1Ukq0Le5XRtUYxT4XJPYMwQYDpPugfvo6RtcXctxzPZW0iC4zZRw1rch8c3DL6dIzodmKRcfcdfpCcA9VflQsi+iAcD6AA2oWMfg1KnPzPVGuUl87OQa2gp6Du/BwChf3tL5E68JQytDdUWOac7F7hfzUAZnQlhRtjnhBNG46k9F49m40fjd5fzuazcez+XT2E3OKPO6dkxcq6WAuDWZ0cTs5n4+m+DMYpNzKy/GENoe7O+03GQ5vPKZzAVGlklb011Zw7h6faOFUghGHux7E1inrbg7PxGOEoXAiUpqjWgnmGaLI3E8f8DzdqzkiUWSwOlpbW6JRLONcb4fqOqUGJEQtXJQHcy0LdKTMSC7FHY3Q2OqMtbmlM7hl92xP0FRS9YC7U7Zrp0xKUTWlnPpVOkR/qW6H5TSr9KmVniCaWEQz1WzaXTTNBkU7PZhjYr1hu/uYrkjB9cLV+HDDlCiNZtsgyKlMsWlUJtC1DKr7vdu+cbh6AyZTuWdc+xHnYrtQfxcETmOPhXqae2OHoLSpTvbfSGqOpn2Zbgfmrf331v5rWsZv7T/Tit5vJjf9iv9D+y+jeotOVyendm9QVbYbP/4LW4MmTmcYAAA=", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Wed, 21 Nov 2018 14:03:21 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Status": ["200 OK"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4990"], "X-RateLimit-Reset": ["1542812443"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP"], "ETag": ["W/\"a50b616fa9d0cb6a83e8137b806542a6\""], "Last-Modified": ["Wed, 27 Jan 2016 06:16:46 GMT"], "X-OAuth-Scopes": ["admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user"], "X-Accepted-OAuth-Scopes": ["repo"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["1; mode=block"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["A12A:1DC1:50EB63:9FFE01:5BF565A9"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents"}, "recorded_at": "2018-11-21T14:03:21"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/1.2.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.inertia-preview+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/projects/1177360"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA51UYWvbMBD9K0Ofk8qyOycYQilksBYSKKRl9EtQZNVRsCUjnd0lJv+9J8esq7u5JN/E6d67p7t7aoh51dKuK5uThGwBSpdQykt1lSnYVpsrYQpqZWkcPQWick9TmUuQa2E0SA2OjMggvLRmJwU4ythkEsUB5m+hyHs1/6r330r0nQpJhMmrQrth7f3itEMhXqUk6SSNiDapXPsIWcxF/PjzvubF0y6d//i9PIjDcnc7Q4TmhcSMlXTwrSPG6Make4z6+6rYSIusI+KAg881pdReq5UcDF41JDeZ0njjVFbwWtnKhdedmvA6mEbBRzEP8dOvZS52d8Finh0WtzMvhNcc+KeptUEXdaOrnLTdiNopVvREf1PPfL3MdiTtozEwOENP5mhP8vAUe8kvJs/NK7IMz+tzIfoHiSJPZ6WzC1kQ2VADW7/y+KSjb4RycL6oFtWgKRzg2ngenLi1Mj1bWIdDWd6Jx6a1W0tYbZywqgRlvtryf3TtAxrZjM24Vgd+GRuivc/bn+DsF7YoRMvafxdnw0+wBs2vai72vjVWCqlqbPaFlD08MsK+9HZ9xKXwrVf4v/G08EZ94bmTx87CWJID5oUBm4xZOI6CVRAmLE6i6TPiqjJF27/nTMeMjUO2YlHyPU5Y9EyObz5obOtyBQAA", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Wed, 21 Nov 2018 14:03:21 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Status": ["200 OK"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4989"], "X-RateLimit-Reset": ["1542812443"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP"], "ETag": ["W/\"3f571facde15d54fab0c9fe8786a099a\""], "X-OAuth-Scopes": ["admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user"], "X-Accepted-OAuth-Scopes": ["public_repo, repo"], "X-GitHub-Media-Type": ["github.inertia-preview; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["1; mode=block"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["A12A:1DC1:50EB6E:9FFE10:5BF565A9"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/projects/1177360"}, "recorded_at": "2018-11-21T14:03:21"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/1.2.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.inertia-preview+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/projects/columns/1941635"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA42OPW/CMBRF/0r1ZoLzbJKARxQGBohaRapgiRzbIkH5sGxHCq3632sqFjqxvnvOffcbJtsBh8Z74zghwrTLS+ubqV7KsSfGjlctvSNy7KZ+cAQ3K0xZAgt4RNVrPmKWsTQOnhRWuRetf1/Jnxs6WgX8sWQBw6h0db/AId99Fd32VlPTndhHXtMZ68/VXJTv8/F6wGAOoteB3A9vYf/Fanevk1YLr1UlfIhojFmENGJxGVOOKWfrc2Amo56YdYQYUSyR8STlyM7w8wt2rcAqTAEAAA==", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Wed, 21 Nov 2018 14:03:21 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Status": ["200 OK"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4988"], "X-RateLimit-Reset": ["1542812443"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP"], "ETag": ["W/\"ea6ec74bb51ed5240f4d95222317cff0\""], "X-OAuth-Scopes": ["admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user"], "X-Accepted-OAuth-Scopes": ["public_repo, repo"], "X-GitHub-Media-Type": ["github.inertia-preview; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["1; mode=block"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["A12A:1DC1:50EB79:9FFE28:5BF565A9"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/projects/columns/1941635"}, "recorded_at": "2018-11-21T14:03:21"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/1.2.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.inertia-preview+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/projects/columns/cards/15057575"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA52UW4/TMBCF/4ufu+s46WWJVCFQeQCpRaAW7fJSuY438eLYkS8pbdT/zjgNiGalQqo8JLL8nTk+mXGDvJEoRYVzlU0xppW4z4Ur/O6e6RJXRr9w5ixmWvpSwZuazGIyiSYzeNAIdTu2/ydDyGyWTCPgRIbS3zIjpHTGt2EJLRcffn6W7w+7uJJPydfF0+OnH8v1Zr9aM7I6buaAKu04SpWXcoSoYYWoOZDPVFo+Qsxw6rRBaYOkzoUCSSvyktbCeBuPu8rxOHpIosu6X6bfHleSvXyMlov8uHw3D7VoTR01/dO1izbpkvKWG6aV48q1oXl8ln9bz0O93HQi7flg4WpUQczinuXClbLn4a+f1Nv8rKXUe1Dpu778ta8L4T8kmDx/C5XfqAJkg7UrOIQHRzqFIIR1w021VIPDCzok6FgI3/BssLGOA1t7BY4abHilW0G/s8yIygmthhu8oEFNm5wqcaS3qQFtQSRYG26lpYDmNfTicPyMNTD1oqbsEKIxnPEwX9sbJXs8KLpDBdOLNtAUIXrh+JZmZRjUdoJP3QhDSepgXxyRhztC7mKyJkk6maYk+g6crzLq/rHnfGddb5NXFxx5MybTJNxs3Uhf59vEoTnDjZlUB5xxyeFEHWuxsNZzi2N0+gXHXQk+agUAAA==", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Wed, 21 Nov 2018 14:03:21 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Status": ["200 OK"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4987"], "X-RateLimit-Reset": ["1542812443"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP"], "ETag": ["W/\"ba8d676b7a060ef1dbbf70e135c9867b\""], "X-OAuth-Scopes": ["admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user"], "X-Accepted-OAuth-Scopes": ["public_repo, repo"], "X-GitHub-Media-Type": ["github.inertia-preview; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["1; mode=block"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["A12A:1DC1:50EB82:9FFE35:5BF565A9"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/projects/columns/cards/15057575"}, "recorded_at": "2018-11-21T14:03:22"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/1.2.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Wed, 21 Nov 2018 14:03:22 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Status": ["200 OK"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4986"], "X-RateLimit-Reset": ["1542812443"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP"], "ETag": ["W/\"6028690fe4299ab9f1377b7a34228081\""], "Last-Modified": ["Sun, 16 Sep 2018 01:16:39 GMT"], "X-OAuth-Scopes": ["admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user"], "X-Accepted-OAuth-Scopes": [""], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["1; mode=block"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["A12A:1DC1:50EB8B:9FFE4A:5BF565A9"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "recorded_at": "2018-11-21T14:03:22"}], "recorded_with": "betamax/0.8.1"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/github3py/delete_contents"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+2Y32/bNhDH/5VAr3Mj2/nR1EDQDUhXdEAabMhD12EwKIm2mFCiRlJ2HSH/+75HSpbsBVES5WEPAZJAoXQfHo93x+NVgUiC2cn4+Ox0ejQeBblK+JyGgsuLT+sr+ZuMP3+4Y9/+WMX57eTy4vfjrzdf7i5/OT8P8DHLOL5MuOSWz2OVW55bgxeLUsp5/XYpbFpGR8Um/O93hRYrZsFYMGn4KFDrnOtgVgVSLUUO9FYYUNJq8v5sOjk53dNzc3X7YfN9+mvJvhVp8lmuoptPR1cXX358vf6T9GSYhOl5qSWQqbWFmYWhHzSHforScF0v4DBWWViG9VQfV+fHQCx1DXG2wcAerBA1yEuDZsKu8qnN5J4C/rX7vvvlQkmp1pDf1/fRKcKtGJnfIUS+fAkCYlWobMphMCzjnhYvjH2mOk6kwsKMhTsRxGALNE+ep1ItBIXIM+6rUPNCOVoZmViLwgqVP1O1HVGglF6yXNyxF6AgSu5OSj1TCScCUb6ikHmeUbxMFbroiTdkDs1jLlaw7kt4e8LA2U1BgX3VsQzZXCDKWZJRZLqAvR8hmp7k1w/EfsK3G4iprlNhDvBjeVYozbSQmwO4X3IQbQ7q6DgsNgcLpQ8E0gzCkbYLnxsLh4VyeHO7zSOPBqczfRtyD6hGrJ496YEgHIGAWrd8M5BEhCrE3zqOYgQ3i2Ajq/pyRJ+SO6gq7P5LTmU5ywYq7xBApUoNtahDACWMKfmT/Lxv+Y5kwiac8jKLfL57ShD1wT0D+jJjxDLnfKAlt5gqbNJypFkep0PBDaUK/ZPbebYcqC4RAIqkigaSEP2hw1ShSZk/jux8uIbEJcoOVvPFK6hLlC3W6sF771QlzBaKc9HCDQbq2lDCqrasZPmyZMuh3C0GHkAn+JLd9dYzffHUcgClSk2LqHyNFNiSSFtfViAPDDVtC2qxrlp5/KzvNUOn7nGGyDLRVz/0MWvITiC8Cpj8dh9O//eXPE9RmShV2GZtfzDU/GFWrk+GRtfuLM0tZ9gEDSWsfiqYTSmrYbKCaT6U6yBhFTGUZ4eHh1XKmSu/M64Hx7VnAMZ0nKLcHKZr1VBQK2XMuuJ+QaomKPalYsnAENxigPQbOkxfz+j6QoFr7kAlHaLLzIRETavyoTm45XTpubJiIeKn3HX6QnAHVX00Io/5iEk5ggNaEQv4NSpz2k+Uq3yonTwDS0HLwV94JIeLD7S+RueCKFXo76gJL6TavEJ+6oAotDVHlyOZM4ubznQ8OX03nrybvr8en84mp7Pj0+/4piyS3m+K0qQdzBlhxifX06PZ+Bg/hEHKrb0cT+hy+LvTbpNh/8ZDnQuIGpO2oj+3gjP/+EAHpxaMJdx1L7aeM+9q/0x8ijAUTlXGC1QrwSxHFNH99A7Pxzs1R6zKHFZHZ2vNLIplnOvtUFOnNICUmbmP8mBmdYmGFI0UWt3wGH2tzlibWzqDa3ErdgSpkmoG/J2ynTsTWqu6J+XVr9Mh+kt1NywRhkWStwOq4HmtYLOKKcJLxDw3WysgBNV6TtPRxbhWT5g53axlt9lmVSFi6PfX36NgJYyIhBR2Aw8tyghMGNhfYsl4nZmDGeZsjOksm/AFK6Wd+/sDABkzFn28UVBwncGgqHowTxXUvQNv2ozhIo/fRkVy7uYZxZ3bV/8l5Uj/jIYDLWPuPc6qW05NQkzkF23+KRmc2B1TjbB/44ZgM6qWdt9oTkflQzIM5WUz3uyI73T6hc5Ry9VTNe3Lbr/krYv51sWsG99vXUzqqO/2xLdtl/9DFzPndo2E2TkauhfBOmlP7/8F7X/ZtS0ZAAA=", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 00:37:20 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"c3dabfba5169ccf24a020b664a9f2969d5106463d4b70553f00ffd522bcd2095\""], "Last-Modified": ["Wed, 27 Jan 2016 06:16:46 GMT"], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": ["repo"], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4983"], "X-RateLimit-Reset": ["1635641010"], "X-RateLimit-Used": ["17"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["8D56:2649:7A9BDC:1446C41:617DE540"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents"}, "recorded_at": "2021-10-31T00:37:20"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.inertia-preview+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/projects/1177360"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA51UwYrbMBD9laJDT8nKsrOOMYSykEJbSKCQXcpegixNHAXbMpLsbWLy7x05ptvNtinJTYzmvXma0ZuO6JcKzLoxBUnJ1rnappTyWt3lym2b7E7okhqotaWnQFTvqYQCHKyFrhxUzpIRuQivjd6BcJYyNp1GcYD5W1cWZzX/qPfPSvSVCkmELpqyspe1nxenAwrxSpJ0kDQilZaw9hGymIv48cu3lpdPOzn//HN5EIfl7mGGiIqXgBkrsO7DQIzRTMs9Rv19U2ZgkHVErOPO5+oaKq/VAHcarzpS6FxVeGNVXvJWmcaGk0FNOAmSKHgr5nv89GNZiN3XYDHPD4uHmRfCW+74u6n1QTtMrrFghgn1Q2zoif1TMxMbmEophLhPwijJQGYTNo03m5AnMhNhEIiYR2wiP7Yzryw3Q7m+PRi4OG1f19Kzx12e91nyRheFfkGWy5N9X4j+RqLI01lV+Y0siOyodltvDnzS0TdCWXe9qB7VoX2sww/mefBvGAPyamEDDmV5zx673pg9YZNZYVTtlP6fH/7StTdoZNMm55U68NvYEO03Qr8zrn5hj0I0tH6xXA0/wTpcE6rlYu9bY0CAarHZN1Ke4ZHR7Wtv7Ef8FL71Cjchl6W39IYXFo6D2bEkd5gXBmw6ZuE4ClZBmLI4jZJnxDW1xAXxmpOMGRuHbMWi9D5OWfRMjr8AFzQQOpwFAAA=", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 00:37:20 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"46bd77108b5f079e3aec2768f57b4368b11f9f3e818dbb556b2b19ca2ccd4341\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": ["public_repo, repo"], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=inertia-preview; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4982"], "X-RateLimit-Reset": ["1635641010"], "X-RateLimit-Used": ["18"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["8D56:2649:7A9BE1:1446C5B:617DE540"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/projects/1177360"}, "recorded_at": "2021-10-31T00:37:20"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.inertia-preview+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/projects/columns/1941635"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA42OPW/CMBRF/0r1ZoLzbJKARxQGBohaRapgiRzbIkH5sGxHCq3632sqFjqxvnvOffcbJtsBh8Z74zghwrTLS+ubqV7KsSfGjlctvSNy7KZ+cAQ3K0xZAgt4RNVrPmKWsTQOnhRWuRetf1/Jnxs6WgX8sWQBw6h0db/AId99Fd32VlPTndhHXtMZ68/VXJTv8/F6wGAOoteB3A9vYf/Fanevk1YLr1UlfIhojFmENGJxGVOOKWfrc2Amo56YdYQYUSyR8STlyM7w8wt2rcAqTAEAAA==", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 00:37:20 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"e001de3d6f9a648baf6bae008783a52797efdf530191985f0a1144565da13033\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": ["public_repo, repo"], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=inertia-preview; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4981"], "X-RateLimit-Reset": ["1635641010"], "X-RateLimit-Used": ["19"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["8D56:2649:7A9BE6:1446C6C:617DE540"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/projects/columns/1941635"}, "recorded_at": "2021-10-31T00:37:20"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.inertia-preview+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/projects/columns/cards/15057575"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA51UTY/aMBD9Lz70xK7jBAKNhKpW9NBKULVaqt1ekGOb4K2JI3+EQsR/33FIq5KVaEE5OLLmvXnzPDMN8kahDG2cq2yGMa3kfSHdxuf3TG9xZfSzYM5ippXflnBSwy0mo2g0hg8NUBex+j8aQsbjJI0AJznKftMMUKm5WIUrNJ99/PVFfdjncaWekm+zp8fPP+cPy93igZHFYTkFaKmdQFnplRogathG1gKQa6qsGCBmBHXaoKxBSheyBEoriy2tpfE2HnaZ42E0SaLzvF/T748LxZ4/RfNZcZi/n4ZctKaOmn517aXtjPJWGKZLJ0rXeubxif2dn7K1GHPOGBtN4mSSC54PyThdr2M64TmLo4ilNCFD/qaeBmWF6dK1TsDFRVNDXot7xW3cVvXU/vWcveC1VkrvgKVf33kTvE6E/yBB5OlflsWNLIBssHYbATZDScdghLTuelEtqsHhgF4KPBaeyQh+tbAOB7J2JShqsBGVbgl9bpmRlZO6vF7gGRrYtCloKQ/0NjZAWyAJ0q6X0qIALWpo2+vhJ1gD+0HWlO2DNUYwESZxdSNlDw+Mbl/BnKMlNEWwXjqxonwbRrqd9WM37JCSOoiLIzK5I+QuJg8kyUZpRqIfgPMVp+4fMaftdrlNXq1C8nZI0iTswG76L+Nbx6E5w25Nqj3mQgmoqMNaLK31wuIYHV8AeTLHTJQFAAA=", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 00:37:20 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"06c944b01a4001dc570e7cdb88bc2469e17af43a4e89087c52959d23f3426972\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": ["public_repo, repo"], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=inertia-preview; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4980"], "X-RateLimit-Reset": ["1635641010"], "X-RateLimit-Used": ["20"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["8D56:2649:7A9BEB:1446C87:617DE540"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/projects/columns/cards/15057575"}, "recorded_at": "2021-10-31T00:37:21"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 00:37:21 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"5f15ed5149df5e679f53e3d263b82156e97cfbb742a0b22ca7157f5b2cda1bce\""], "Last-Modified": ["Sat, 30 Oct 2021 19:31:07 GMT"], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4979"], "X-RateLimit-Reset": ["1635641010"], "X-RateLimit-Used": ["21"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["8D56:2649:7A9BF0:1446C9E:617DE541"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "recorded_at": "2021-10-31T00:37:21"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullFile_contents.json b/tests/cassettes/PullFile_contents.json index 71d7e4569..088dc93c1 100644 --- a/tests/cassettes/PullFile_contents.json +++ b/tests/cassettes/PullFile_contents.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/286"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1cW2/juBX+K4IXBVo0jq6OHSGb7bbdtvPSWWyzKNDJwqAlyuZGllRdnPEI89/7HVJXx+MkVoqdBz3MIJLJj4eH5DmH56JyUqThxJ1s8jzJXF1nibhci3xTrC69eKunPIkzPRPrLduJtMgsR1e/2pfJXk+KMMx0a3E1uZgIf+Jatj1z5nPrAnDbcNlH7qCewqvgfBEE5wNcUncQlbDc2wyAkf1pcllW8AOcV3FKAtSsiortiqdg1+LqYpLlLOdYAC+MM+5jrDD2HvCHG7Aw4xeTXOQh/f6972siErlgoZawLNOCONW8lLNcRGst5TvBHzUs2ZZHeQaYIqMhSsCtRYT+XZ7Xy+UYC9u4mLAdy1l6OD35MrOr3UBwXhzlQJcbo9At2fu73bcO4NZpBULbYELDn9pVBNbfVejx8i2DxkEchvEjUA6p7m/fpwPpTc8GBfw7EwU9Sz3ONxzMw5Q+EyNElr+eKNmrxNHK8qXwCQfbIk25/2rCqn4g6zECRaU8wRKwWGVeKpJcxNHrCez1BlqcrlkkPmHznYOG3rRFpXB59QxlL/TmO9rpr+6uupV6kood8/bEmpR7XOzA7DMhD/oDMd8ndGZ/pjMI1oucL5m/pXMoT/Xni8kq9vdo8S/OtW+shSNP8zZOOY4wDtnH/PI+uo/u3v/1vXsfTTU6/DnHHrmPNG2qffj4i/YOzXDqaAHalz9DQMj2dDo02pNaHmsfwLJw/8vvaxnvY55hnPC0K+l3diXOaxmifyOlC5+yafXqDwTGIH3SXHhFyNIDsQOaa+qI4C3PNzHojrWfpHT6ixJOmgi0JGUeMFioevSm94UJ1q/VFMFVRZ2/ZDn4aBmmMzWNqXV1Z1675tx15v9BmyLxMYO2zWJqmFNrdmdarmO7pk1tlOB9AmNZ7mzuzgxqsuXpuoNSj/SkyZIYJfJltmFE0+x6bpnO/PrKmC/MOWOzhcedlcF8KzAd25yvPJP5HsMAkOdiHXHsmQgqtX3OJu6HX2iD/hfagyai5Dzk3uEPOWfb6mXIVjykv0uplE3HXMwNh3TNSaF8WtUrUP3PzHtI4jT/nWUkMSkDqCPQH7Et7ff6V637mxeHMTTRxDBmluehsc8DVoRYNXUWML+tCDG9OAJGOYTIBifTySR5uUbpGjUNiMRQ8z4tZU5zrkuUXq2NMpcc88oi/VvbA1ihWtubl4bkVCOywcB30obQICgCnMsixd8pD2l/0xmDFqJHzjKuxYG2wx6BaNAUkDwrtAqjPXBgeIz2wFkafLQH6hvSERPzHHsA6jhaqlsCRDaEQqWW6leW014VqC0pLqmeW+VmT43F1DbvzJnrzNzZ9RcUoDU153em7dqma0sl6eNqE8M0Uaqnow7pBUwVpdSesbROy8DmoqhXYBhWqTKpMp835F4DX12A+vhDJLiivia01JW8JsvxLYhvr4aSORX1dC3E1hrE9RpDD/jM9x2HBTZfzU3TYA4zg4VnLwLDu16tLHtmO9dBIHUmZ7AZoCbIiIDS6V4bXSiTqWJrbRLKdQzQ7uhPyg56xeh0mEYl9eR2PCqpUUnhrvubX1pJCtPxpGuFPTcNyJLG9m/dgpAJATTHsroUfMHZh1bSRTEe9/G4074afVSti/0r8VFJFxk5pytX9Fn3aTIwe9fYH/dwC0VaKFYpS/fS8SXgy0oD5pEn+xHBB3mZ/bvI/1GstO9/fLezSaTE6UNDyfmOjAppkF1FpJAH8oHvB+FQ/1LH/5XPF54SmF0xnHrxc47t0/ZwD6iEWdni0jGTvqIhBrFyNsFYjOOHQUASABSp+MpL3K+nJ17Z0vX5aQ314dAKAbTWvrpBE29ASr2OHOA4RN5mmMVfY5S6+kuuNlsPIpX6A2YVxqtBODAQdAlS6rgXqFhJvhxKHaESRg8UV5LBpBJGA5qnfNjCSDIJpIF80wteWXE0ZNG6YOthtDYgWHUKJ63Zp2cDbaePZYsCSApwpGJVDBdyLQ5RquJbCKwOWvoOTAsqg2ZDBGbXXSZZQGGCQXRWEL1t/wawtE8Pod/CyXHMeaKEfvXLEO5WUv/YGFXIeiCrZdg708s/Ih9gU/l9EAUblBEAaglCL1fw2H++vLwsyfVC4DLaNIhihQAolnobRDaHMLesMWD1bFkuI8oBkenj+hbGzB9EaQMCQLWMQ2hVCF0HnXTdDYGUAF3ENpwzBLZF6WJHcS4ChEVfEFU/LXB7QOV3mYg8fsEQWVSxW4F9DFubVnF4fEshYBqIARJiFYQaxPUao9RVNoSPAHa8H+wn7sCQFD7wn1tTw56aNgWQZwt3JoPDRwLIcLObd8aV6ziuNaM2SZFt+jFmNLHvLIPi0NYVNYFYrXYL/kKWlXKWyESaL7hHKDSPjllWpy/h+U9tN/d0Nzjxo8NT//Ixd4e67vmuIHUTb3kC2wPO4DrRQPWzk/0lWO3jUufHXnYpYpqY+ISWM3M+n/esDC8uIoSG51cIgTxS9hXp8+7L2jrBMOomSUOzrImd5GmBrCl6k6Txr9xDMpTbvmvlTeflo3gQ7SWXepIJ1byR172aBpmztRVpGlcJU1XAXgnaNm2rE8+pu8LxjvMmPB5lMtCNix8mIdOHMIfKW/a+eswS/yOuhXVURl54q3iMun6q7LF+2IgGqJlW8bAKti/VfQDjVckfk8+UhALVc9LZz8IEqQxdH3/9Rrn2uWHyaz+wfBPpDMya257FjJkTeIYfeCb+Lbwr+9qeA2J07VPW3OjrG319fZH/lfj6Rtf+izOWIczG9FMyXY5IszH9tJtTeYRBX8lxH137xysaRte+zCMdXfunyhdO371H1z62D25+o2t/iIOoyd0aXfujaz+vCgsG+dRwJEfX/kEBYx0eGF37o2u/U4Yy6JyNrv2TNcOja3907Y+u/f+7a38ZigipVQgzZDxEgn452ahE/YGF/ogaUBrgEcDng0SywFTW9wNFxmqPwJxbVl8VqsjyiYGzPVaRAfiDgpWho/RrYiTdTwZ5mzGeJka0VT1vMwLWtKnsAXZ9eRkK/voCFopqsQIJpukS9/DYEzKWjrDX+3//84efcDGluuul2sGTm+SW6q9vmEZn49v7g7jlqfCs3uwR536ieSEGQ3/5ckonT/s1m7ZPaII6ZDblFDacUnk3Gv+NoepVlm5SFoUmW2uy/rNuLnw0c64Wpm1f0zASA2XbW7TFrGqgd21PoKC2Wmbt1u0ROTx/ZrdUm36js9un9ek3enJ7H4GFski9eipCeheK205F900RNgwie5uJKJvmLHsAo7L8fqJ6NE2aX6aomt/i5xsRJUWuIRJM38XAXDoM7zeeyjar+CPNXWRsBf6q9pKTeEt1+firbXfbraO/0UG5pP83o4aq22sydMXNhqjbflX/0217bl0/mAyXVriXC/1sif9Xvp4v/fJAu9jjZuXbs47Olzdrf+vSUy16SfhBHJ/67kX11Yv7qCNE8J2I/gcv1Gcg6CMZ/VMhN/Lzmxh4L90oz9OBuakvRNSZJvKJxE+TQ5JyyrXovWoaLUnNUdqML9J834AtV0gPGev1x3r9sTaq+/mxrySAWtvUKNY/cjNAsf4Wdg7ZOvg2lMei5TbGJ8lwoKtSKuqODPCJi5bM9/FZL3xHCVhzoPn4ikf9jCzFDXL6kV4Y0DdSkDH3+X9AoLq9sk0AAA==", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Sat, 03 Mar 2018 21:05:35 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "59", "X-RateLimit-Reset": "1520114735", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"87e59e8cdae961df0650f652ab140b5c\"", "Last-Modified": "Fri, 02 Mar 2018 17:58:58 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.257103", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "816A:245E5:2B261C2:4B3BCF7:5A9B0E1F"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/286"}, "recorded_at": "2018-03-03T21:05:35"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/286/files?per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Sat, 03 Mar 2018 21:05:36 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "58", "X-RateLimit-Reset": "1520114735", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"a7649b9ef71da693ea6c76a029bfdcf2\"", "Last-Modified": "Fri, 02 Mar 2018 17:58:58 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.038881", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "816A:245E5:2B261EA:4B3BD43:5A9B0E1F"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/286/files?per_page=100"}, "recorded_at": "2018-03-03T21:05:36"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/contents/github3/pulls.py?ref=fe5dd44af3eb7110a4a1f8c38f0c9bb235349ff6"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Sat, 03 Mar 2018 21:05:36 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "57", "X-RateLimit-Reset": "1520114735", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"681b647085e72d91f4e82229b5939ec10c41eea0\"", "Last-Modified": "Sun, 26 Oct 2014 22:47:16 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.048433", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "816A:245E5:2B261FD:4B3BD5B:5A9B0E20"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/contents/github3/pulls.py?ref=fe5dd44af3eb7110a4a1f8c38f0c9bb235349ff6"}, "recorded_at": "2018-03-03T21:05:36"}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/286"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:43:30 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"56d5d265758e7e34bc44066eb51ef8a62b5f1e76e6cc4d2ad9de48e13f5b11b9\""], "Last-Modified": ["Sun, 31 Oct 2021 15:26:56 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["41"], "X-RateLimit-Reset": ["1635696979"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["19"], "Accept-Ranges": ["bytes"], "Transfer-Encoding": ["chunked"], "X-GitHub-Request-Id": ["BE8E:33B0:1DDC0E:737D46:617EB9A1"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/286"}, "recorded_at": "2021-10-31T15:43:30"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/286/files?per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:43:30 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"3f78ed2658507de562f21257c4f596d1deb9b8727eaf6ac3f546cadb963da72b\""], "Last-Modified": ["Sun, 31 Oct 2021 15:26:56 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["40"], "X-RateLimit-Reset": ["1635696979"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["20"], "Accept-Ranges": ["bytes"], "Transfer-Encoding": ["chunked"], "X-GitHub-Request-Id": ["BE8E:33B0:1DDC0F:737D49:617EB9A2"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/286/files?per_page=100"}, "recorded_at": "2021-10-31T15:43:30"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/contents/github3/pulls.py?ref=fe5dd44af3eb7110a4a1f8c38f0c9bb235349ff6"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:43:30 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"681b647085e72d91f4e82229b5939ec10c41eea0\""], "Last-Modified": ["Sun, 26 Oct 2014 22:47:16 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["39"], "X-RateLimit-Reset": ["1635696979"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["21"], "Accept-Ranges": ["bytes"], "Transfer-Encoding": ["chunked"], "X-GitHub-Request-Id": ["BE8E:33B0:1DDC14:737D56:617EB9A2"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/contents/github3/pulls.py?ref=fe5dd44af3eb7110a4a1f8c38f0c9bb235349ff6"}, "recorded_at": "2021-10-31T15:43:30"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_close.json b/tests/cassettes/PullRequest_close.json index 624dccbd2..898e33c20 100644 --- a/tests/cassettes/PullRequest_close.json +++ b/tests/cassettes/PullRequest_close.json @@ -1 +1 @@ -{"recorded_with": "betamax/0.8.0", "http_interactions": [{"response": {"body": {"base64_string": "H4sIAAAAAAAAA+1byY7jNhD9lYaucbcs7zYQJH+Qy+SSIDAoibKJ1gaJ7o5H6H/PK5JavIw3+hAMBEwPLIl8LG61vCIrZ1fEzsrZSpmXK9dluXjbCLnd+W9BlrgFz7PS1S/G+d4NecwlXwdZKnkqSzffxXHpjpyBI0Jn5Q2n8+V4sVgMgJfE60PoDuxlQIUXiih6HOCNqgMlZzLYWsCo+tS7stzxI5w7h0pB6LFKd4nPC2c1GjilZJJj/LOcp2gnzoJ3jpGMWFzygSOFjOnrn3mIYi+SlxKFdiVVrlB4I1J8LcUmYR+i2JWjiZmJ0WS4GA8HDvtgkhXHgquXpZlnQjPzqaZ85+rKv338OgbapjAYNMEOtX5pvRBY6R4JdHktHBWOsjjOPoFyLPThwjxtyG1qQkj9W6SbB1FQs3IzueUYO3TpiwZClPJ+oVStCjuolGsREg5mvCh4eLdgph7E+kwhUaX2pgLc+WVQiFyKLL1fwIPaQMuKDUvFd/YYGmqXAFFq4+4eqlqozT9It9xdXVer3LwQHyzY09AUPODiA4P9IORRfSDKfa42JG1BDL2AMmRhQttQbdmvgeNn4V7vlKDg2LXhmkk8j4be/HU4evVG37zpauitJtO/gLBTO/tymSDOSlMkhb4dOAkvNqcvoJWTRMh1uWVoz/MnS3/GIt8beiyaDqNoPlsuZ3N/GU4mM8+bzKGnp8sAMrASezDl6JeGr59LZ/X3P2hNxNA7Wdp81+1cmaAbLYdrwNRkfQj+qXpxff7vgSe0E/zLy+s2+FrUytUanZbcc8SvjYUaHiM/mQooI8txr1HcSRh5y2k4no48rM3AX7LpYjYO/IXHPc+LGJbOnM+mM/RpyxmUPwwO8zk5C435XpFFelXr8zUv9CBHKHDyWq/JO5o8tnFNkxBHuRrzxcibzh60cKa2hYnrynPZvnVL3mXcWifpYct2DGFj1losK5vWwjzPoHUwu7YQS+Vua9ZC3WvK2pr327G27nOMWFeWAwuIITEW7I+Oncfbc5aM+kHbnvbbdDhZzEbkUqYsIQt4FAkAIoJtWpuvrQCn5ZT/0vVfm8L93ibf90avtR3ixtl92GVtsfq9fS7O+Pn2tnKSKfI0keaNNuyYAMCODXkTfUAtfNuK8gX/JE/yrGCFiPcvsOXhi79/MaP4lu9foqx4EeAQEF1SoKEiW6x70iJZ8d5IdTHWvOKjGSxLd4nEIb/mne8tkQihcvG/iQMDBLrMxxjJ7Fqwe6WncBI7UNXBI7mkkrPEUngFAahtlr1bQikI0vSKUrklMLvWfeMs16az9cWfAa4xIG8TFdlFDg1M5dbMgl+wNNjaOvY1SuXqX2rm2cZytggBQH6c+ZZI2P2ugqlcRAOaUZFrewkJl1AOYAsePUFcQmlgZcFtp0iJSjAN6JNjusqMbMzSzY5tbOVtYLACyFvfsO9Xiblrm7XFASjxjoXwd89QgS0SSavjALCslsugA9TCKqrNTg10aTc1EETdWMpqQA42wlOAad0egz+H5zjHoGjDYL7YjbKxDOdaqVMYdg00iZDqF6QKtoYAyllhmSyAxATiVj4Dqfj29lYRB0PwivuzXCgaA2CsCLbgR+3GoKpR4CslTCpmOiJRQ0R6ccZCS2kbGEDqCbWTV2N0OTuVxbIDVRBdzIY1tQRucbroaSZFJIJbWPprCvkAqvqtFGnABww0MxagFIHAuoZnTvOp6D/L7mgMdAUsAmEWSChiiVui1iiVq3MsIc/jbP8EGrkDRFr6iNCfvQ6919H823C28maryewcoX+uTL4rtz/m/BUMVK5ZkPiFvKyOnVSCzoRRp9lYSuihalnWGU88/95WXF2rCB43PdYF97T7cWwTb6kMgbdZwnN4K3X+oRTf8Xt04HME2S5FGgX80yelZMmut69qP6UG2LJyrXe5s5LFDolUetPqkc7LT/EuuoVIDuQ9TFSsor9OQ4koisykU3WuhPK2pq26HATXUSNJ2/muulRLr7oS8ojtYrnWDjui54SVEtzYF6WRsCvOc+6mEO0d4tqbR82xz+cLH1mvyXK2CKPxzGfz8TIaR14wHfrDIFgs58tgPAsYxr3n2Dt7qefYf3QGRKfaW+VhnTFuoXqOvefYbz4rBI3V5886GqvPn9FpJXXgqNUo/6f8Wc+x33aIsOfY1VnKnmPvOXbLOBh6sOfYe46959iVQu05djUM59jvnmNX49Jz7OYeR8+xqxPOBwx+z7EfXPXpOXbSpj3Hbi4J/Awc+zoWKc4i4YhryWNw6ZWz1Zy65W040Pd0nu4M4C0ZEXWpDnfggKLM9BmYR6+eAbL2Bp6H2jgYJPHRJQ77VswNwwuNPKuNUz/JDBcOZjyrjVF9joLGqj78Yw9+/6UOlWLCTaW1Xqh0sU89Sv4v3VbCo75k1KTC1CPz6TqiTqk1L9bUOh0JD5DKpUuM5nqSj2tQOknWrjkkvU5WCN4lDIdB8YfrdgFL10mG65uobbJwVF3NgYcTC2Eo1NU09aQOlzdPwRbHnpBXjejCEr5//Qf+McM93ToAAA==", "encoding": "utf-8", "string": ""}, "headers": {"X-RateLimit-Remaining": "4989", "Content-Type": "application/json; charset=utf-8", "X-RateLimit-Reset": "1486914697", "X-Served-By": "9e60649f02cd840ee8baa9960690f79f", "Date": "Sun, 12 Feb 2017 15:23:45 GMT", "Last-Modified": "Sun, 12 Feb 2017 15:01:45 GMT", "X-Content-Type-Options": "nosniff", "Server": "GitHub.com", "Access-Control-Allow-Origin": "*", "X-GitHub-Request-Id": "BBAF:5521:34BB339:4206C4C:58A07E01", "Content-Security-Policy": "default-src 'none'", "Cache-Control": "private, max-age=60, s-maxage=60", "X-RateLimit-Limit": "5000", "X-Frame-Options": "deny", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Transfer-Encoding": "chunked", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "X-XSS-Protection": "1; mode=block", "ETag": "W/\"2f787c745f07440487bc7aac36c6c87d\"", "Content-Encoding": "gzip", "Status": "200 OK", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "request": {"body": {"string": "", "encoding": "utf-8"}, "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2", "headers": {"Content-Type": "application/json", "Accept": "application/vnd.github.v3.full+json", "Accept-Encoding": "gzip, deflate", "Accept-Charset": "utf-8", "Connection": "keep-alive", "Authorization": "Basic ", "User-Agent": "github3.py/1.0.0a4"}, "method": "GET"}, "recorded_at": "2017-02-12T15:23:45"}, {"response": {"body": {"base64_string": "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", "encoding": "utf-8", "string": ""}, "headers": {"X-RateLimit-Remaining": "4988", "Content-Type": "application/json; charset=utf-8", "X-RateLimit-Reset": "1486914697", "X-RateLimit-Limit": "5000", "Date": "Sun, 12 Feb 2017 15:23:46 GMT", "X-Content-Type-Options": "nosniff", "Server": "GitHub.com", "Access-Control-Allow-Origin": "*", "X-GitHub-Request-Id": "BBAF:5521:34BB345:4206C5B:58A07E01", "Content-Security-Policy": "default-src 'none'", "Cache-Control": "private, max-age=60, s-maxage=60", "X-Served-By": "edf23fdc48375d9066b698b8d98062e9", "X-Frame-Options": "deny", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Transfer-Encoding": "chunked", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "X-XSS-Protection": "1; mode=block", "ETag": "W/\"659752a4356b97cb7f3ef455a4c9b72a\"", "Content-Encoding": "gzip", "Status": "200 OK", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "request": {"body": {"string": "{\"body\": \"\", \"state\": \"closed\", \"title\": \"Update test\"}", "encoding": "utf-8"}, "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2", "headers": {"Content-Type": "application/json", "Accept": "application/vnd.github.v3.full+json", "Accept-Encoding": "gzip, deflate", "Accept-Charset": "utf-8", "Content-Length": "55", "Connection": "keep-alive", "Authorization": "Basic ", "User-Agent": "github3.py/1.0.0a4"}, "method": "PATCH"}, "recorded_at": "2017-02-12T15:23:46"}]} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 14:56:56 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"5f15ed5149df5e679f53e3d263b82156e97cfbb742a0b22ca7157f5b2cda1bce\""], "Last-Modified": ["Sun, 31 Oct 2021 06:47:12 GMT"], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4995"], "X-RateLimit-Reset": ["1635693219"], "X-RateLimit-Used": ["5"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["C4C0:1BAD:176FAE1:2B9BEF0:617EAEB8"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "recorded_at": "2021-10-31T14:56:56"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"title\": \"Update test\", \"body\": \"\", \"state\": \"closed\"}"}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Content-Length": ["55"], "Authorization": ["token "]}, "method": "PATCH", "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 14:56:57 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"4f3f5a42c9a271335b07bcfec25a4ad89a099583bcf1b2e1964c9e665fae81e9\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4994"], "X-RateLimit-Reset": ["1635693219"], "X-RateLimit-Used": ["6"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["C4C0:1BAD:176FAFF:2B9BF22:617EAEB8"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "recorded_at": "2021-10-31T14:56:57"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_commits.json b/tests/cassettes/PullRequest_commits.json index b6a2ae022..51d80311f 100644 --- a/tests/cassettes/PullRequest_commits.json +++ b/tests/cassettes/PullRequest_commits.json @@ -1 +1 @@ -{"recorded_with": "betamax/0.8.0", "http_interactions": [{"request": {"headers": {"Content-Type": "application/json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate"}, "body": {"encoding": "utf-8", "string": ""}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2017-02-12T15:24:09", "response": {"url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235", "headers": {"Transfer-Encoding": "chunked", "Content-Type": "application/json; charset=utf-8", "Last-Modified": "Wed, 08 Feb 2017 02:05:35 GMT", "ETag": "W/\"06be44370df682f1efc21f803a926f7e\"", "Server": "GitHub.com", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-RateLimit-Reset": "1486914721", "Cache-Control": "public, max-age=60, s-maxage=60", "X-RateLimit-Remaining": "57", "Status": "200 OK", "X-Content-Type-Options": "nosniff", "X-XSS-Protection": "1; mode=block", "Content-Security-Policy": "default-src 'none'", "Date": "Sun, 12 Feb 2017 15:24:09 GMT", "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Content-Encoding": "gzip", "X-Served-By": "a7f8a126c9ed3f1c4715a34c0ddc7290", "Access-Control-Allow-Origin": "*", "X-Frame-Options": "deny", "X-GitHub-Request-Id": "BF10:5521:34BBE7B:4207A4D:58A07E19", "Vary": "Accept", "X-RateLimit-Limit": "60", "X-GitHub-Media-Type": "github.v3; param=full; format=json"}, "body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "status": {"code": 200, "message": "OK"}}}, {"request": {"headers": {"Content-Type": "application/json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate"}, "body": {"encoding": "utf-8", "string": ""}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235/commits?per_page=100"}, "recorded_at": "2017-02-12T15:24:09", "response": {"url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235/commits?per_page=100", "headers": {"Transfer-Encoding": "chunked", "Content-Type": "application/json; charset=utf-8", "Last-Modified": "Wed, 08 Feb 2017 02:05:35 GMT", "ETag": "W/\"d3140934595ce2f9953bef69a2a4dab9\"", "Server": "GitHub.com", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-RateLimit-Reset": "1486914721", "Cache-Control": "public, max-age=60, s-maxage=60", "X-RateLimit-Remaining": "56", "Status": "200 OK", "X-Content-Type-Options": "nosniff", "X-XSS-Protection": "1; mode=block", "Content-Security-Policy": "default-src 'none'", "Date": "Sun, 12 Feb 2017 15:24:09 GMT", "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Content-Encoding": "gzip", "X-Served-By": "52437fedc85beec8da3449496900fb9a", "Access-Control-Allow-Origin": "*", "X-Frame-Options": "deny", "X-GitHub-Request-Id": "BF10:5521:34BBE8E:4207A6B:58A07E19", "Vary": "Accept", "X-RateLimit-Limit": "60", "X-GitHub-Media-Type": "github.v3; param=full; format=json"}, "body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1Y227jNhD9FUJPLZC17jcDRbt9KVAULbBNX7pZBCQ1stnqVpFykBr59x5KcRK7u1krTt5s+EEQObfDmeEZfdw6es2dpROlUvA8zP00LkRSRrFHUSKDOEjzIhRZKLOsKPNIOBeObOtaGWe5dfhg1m1vnxpeE7T8SM1fvFYN+0lVgnqD3VRzVWFJrKZXP0i9kPWwoGLAasGNlQs8P3rnxe+84NJLll629KM/nbudKUNvaaMmrfnKevG+KNgHqohrWnCtyWjGjemVGAxdNVfN5ZrYz7//9isrSEu8Vs2KcdZPEkw1shqwwoBPV5EhvCnbvuZGtQ3DXxl91Ux6F4w9Z4zdKLOG6kppw9qSvR+dgdDlWmmmoEauiXfUMxhgBm7xrquUnEyZNW9Yzf+e3NPU8R4ow89/BoK+jeJXzS5MBWyvJ5+++XZhg/yF+IYeYNhbR0Csq7ikC/skARPTbU1tQ2zNgRUb8MZ6pMzFVQPUWE3NGP0BqpAGGKxo5WB3jG4vkA2mJ5zDLiVFmsRh5GVR5iEtI1nmfpyXspD4xSH5cZTFUZr4EBx6m2JrYzq9dF3eqcUKCA5igbNwe+pa7Wq1qvlG9YMOIndaDRfdrX10rV3tHm0PiXmiwamEtDuz6oDVtWyHBsXnnebECxxYm7q63o/7Cchfgncy9IJA9YGtWYc6NzzXCgBdjVx6bGpVu1LNk9aFRVU4yzDxwzTCxg03vD90c3yp7/MPBdHLtjFQPabi4E7C32++C6Ft1d/rsGqdr+WxVYYsve+j2P38iTzZWLZV1d5A+tDZ/ULZN+A+SMHU9IyO8gINkNq6LboUsEIIdzZwNLZ5zowSW1SrNteqsDo0cO6pmOXQvQzcuWngyXbsDaOyQdiW3tlONM+xPUloavsVb9S/Y0+bpwmSNv/GdjUrqlECkrSxKTxLdBLZul2vNlzeWih6kqQ2APYF6g5koc3cdvZq/QMHb2HGfXLNCzAEZ1nyStPhHX8uualQgdW55B5u8IPGdC65x2sAHWyvXI8qOTDC8bJbfnyg/5kXRrlMszLE3Rb4EYW5KLwiEVlCeeh5IiceC3tpnUB9Hq7l4609f8d9jXUca+fu093FDoo48aQPqhlzmYUkwiz1w0LEicQ/5cS5HwQyDjJAMcXzNpNQeOlFSwxDgfd2k9CBjcdJ6AN6f2++MAWAtmtMRRh+JCYNTE6HxD3PRcxLL0/K1JciltIXFJWh8PBPRRjIsrADX3RaMj0S96PtncaZrcFdBs9Mktcn7jMcOKmEZtjZcejnCcjz09hcfM/EfRwr9iaDM3H//HeAM4t4Mq8fgPESFjHV6v3HuTNxPxP3/396O5fc65bcZ4j78d/tX4O4H2/tJNZx9HdREPdP/wEh4S1oxBgAAA==", "string": ""}, "status": {"code": 200, "message": "OK"}}}]} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 12:19:35 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"f72c03b1024568eec3262f551682e466fc6f45b7db74d50f51746dca0fd5b1db\""], "Last-Modified": ["Sun, 01 Aug 2021 08:10:10 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["59"], "X-RateLimit-Reset": ["1635686375"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["1"], "Accept-Ranges": ["bytes"], "Transfer-Encoding": ["chunked"], "X-GitHub-Request-Id": ["C4B8:7558:F489C3:24551C6:617E89D7"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2021-10-31T12:19:35"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235/commits?per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1ZbU/jRhD+Kyt/aqVc/O7YkVAL4nq6U2N01HcUjhNar9fJBnvtetcBEvHfO2snQKIexERUqhqUSI7X8/bszOw85ttCExOsDTVnQGIc2IE5cJPYSx3XoI5HLNcaBIkd+zbx/SQNnFjrabxI6BVLQGh0fO59tgIZn2XGaE5uR8fwjQojtEJ2Hl3PT6L3dnh2ysL83Aijoyw8vpiOpl/uwnl2PbI+OiNr5Jx8OM1PolMGikmR50xqw4WGazkpKnXFcU7B0hHlU5wzjj6wLKaVhKdpjlkGS/G4vfUrEX2S132a1LCaYKnkLMN03hnuO8OKDG9o+EPTudDuV6YkfUsbORUCj5UXh0mCTmlGsaB9LASVAmEpKxbXkl7ySx5NKPr0x0mIEioI3GZ8jDCqWgnEOMlqWEGAT5lRSeFOWlQ5lqzgCD5Mikve6u0j9JwxdMPkBFRnTEhUpOiwcQaEogkTiIEaMqG4pBUCA0iCW7gsM0ZaU3KCOcrxdeueoCWuAGXw86+agr4Zw5d8FSYDbK9an376ua+C/J3iGX2AYW0dAkJlhgntqSsCMCFR5LTgFE0wYIVquKM8YrJ3yQE1lFPeRL+BKkgDGCgpSK2eaNzuQzbIisI+rHI9Hniu7Ri+4xuQ7w5JA9MNUpIQ+HNtarqO7zoDzwTBulIpNpGyFENdxyXrjwHBOu7DXugVLQuhCzbO8YxVtbAcvV21++WdutSVXaFvbQ8Sc0eDbQkJvUM5KxHA6ooUNYfiM3rajFYsXW66Qq39TaHiU5wJ2tMqyOSCAzA1h+g5rPQ0dYFlXQHOvM6ynlbiu6zAIKR+3u8W2ivCmsg8u1pH88nW/WjTWkOvgE9s2OqUKl3D05d7JgD3x1aZFWOmNmXVEGFRdWnbM+2Bs962P3tf/wwzMoUGHI3s8PDgQGmaYYmrzTiam2KZ9lCHFSm4hHxpKqDWW+2/zA4c0DCuljqa0+Gl8lHKoDiW7Ruefn7LnjyYFllW3ID0prPr9bluQH+QAlPtNTSyV2gAqYVeQHMErCCEexU49NNuzjQSC2gSQsJZqnQIwLmiSSeHljLgzg0HTxZNS2qU1bE6SUrVALs5tiYJmopqjDmbN620myaQVAnadMlOUTUSIElnkGfdRFuRhV5WbIbJnYKiooSyGQD7CnUbsqBN3pXqRP8CG69ghmPsCicwmCx74+Zosa/JjUa4r8l9Tf77NQmTqmol2vDbA9/xDdsJyMBPbTgdLdOhdhAnRuLFvkcD2zDigGI3tqHIdxjJHg727a09fwi+NLdsa+f++31vBYXrGcSEEdjFxLdpbPsD005i1yPwGWCKsWlZxLV8gOJF6meG06PpKLq+DaOvk/P5eH5x9nF+omihBTQwupg2X+u37Pzs/e1o+gl+f1STQwvU21A/OzKcIbA/y3g76rdh45H6ncKpU8kf0B7gKQJoILA9AtQKqOImUwmC2MWpEXjpwCSxS4gZUye1YwM+g9i2SJoohqsQ3CFLH5nK1vZ2G+eVwVVpdMi+5dT7n2AqHcLaqeI72FmRhudnsedJbddd2zOVPVNR7+v0PVPZmHz3TGX/9mD/9uDJK7mN+vifvj34B6ay/X9mdpgBH5jK9tZ2mlu2fkENTOX73wuDyB2mGgAA", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 12:19:35 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"1008c2119463dbdee93b13666402961715a14260af30b2b62afc2989d6580621\""], "Last-Modified": ["Sun, 01 Aug 2021 08:10:10 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["58"], "X-RateLimit-Reset": ["1635686375"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["2"], "Accept-Ranges": ["bytes"], "Content-Length": ["1239"], "X-GitHub-Request-Id": ["C4B8:7558:F489D6:245520C:617E89D7"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235/commits?per_page=100"}, "recorded_at": "2021-10-31T12:19:35"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_create_comment.json b/tests/cassettes/PullRequest_create_comment.json index 033bad335..aa8a7ca73 100644 --- a/tests/cassettes/PullRequest_create_comment.json +++ b/tests/cassettes/PullRequest_create_comment.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "Basic "}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/423"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Sun, 25 Feb 2018 13:33:43 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4999", "X-RateLimit-Reset": "1519569223", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"487b084939cefb9a4cbf03a5a6e57153\"", "Last-Modified": "Wed, 31 Jan 2018 04:12:14 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.284420", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C0B6:328F:7E7D25:1826BC8:5A92BB37"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/423"}, "recorded_at": "2018-02-25T13:33:43"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"body\": \"Testing pull request comment\"}"}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Content-Length": "40", "Authorization": "Basic "}, "method": "POST", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/423/comments"}, "response": {"body": {"encoding": "utf-8", "string": "{\"url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/comments/368309777\",\"html_url\":\"https://github.com/sigmavirus24/github3.py/pull/423#issuecomment-368309777\",\"issue_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/423\",\"id\":368309777,\"user\":{\"login\":\"gh3test\",\"id\":2354350,\"avatar_url\":\"https://avatars2.githubusercontent.com/u/2354350?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/gh3test\",\"html_url\":\"https://github.com/gh3test\",\"followers_url\":\"https://api.github.com/users/gh3test/followers\",\"following_url\":\"https://api.github.com/users/gh3test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/gh3test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/gh3test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/gh3test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/gh3test/orgs\",\"repos_url\":\"https://api.github.com/users/gh3test/repos\",\"events_url\":\"https://api.github.com/users/gh3test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/gh3test/received_events\",\"type\":\"User\",\"site_admin\":false},\"created_at\":\"2018-02-25T13:33:43Z\",\"updated_at\":\"2018-02-25T13:33:43Z\",\"author_association\":\"NONE\",\"body_html\":\"

Testing pull request comment

\",\"body_text\":\"Testing pull request comment\",\"body\":\"Testing pull request comment\"}"}, "headers": {"Server": "GitHub.com", "Date": "Sun, 25 Feb 2018 13:33:43 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1369", "Status": "201 Created", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4998", "X-RateLimit-Reset": "1519569223", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"c7e12c375d110b824c9231c4f61a2b02\"", "Location": "https://api.github.com/repos/sigmavirus24/github3.py/issues/comments/368309777", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.284784", "X-GitHub-Request-Id": "C0B6:328F:7E7D42:1826C06:5A92BB37"}, "status": {"code": 201, "message": "Created"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/423/comments"}, "recorded_at": "2018-02-25T13:33:43"}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/423"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:25:11 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"a195f6f3308062dc1a479d030ee986b67f404523551e34f24c06b3e10e73b845\""], "Last-Modified": ["Wed, 29 Sep 2021 14:01:34 GMT"], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4998"], "X-RateLimit-Reset": ["1635696820"], "X-RateLimit-Used": ["2"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["B914:621D:10EDE2B:1FBA028:617EB557"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/423"}, "recorded_at": "2021-10-31T15:25:11"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"body\": \"Testing pull request comment\"}"}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Content-Length": ["40"], "Authorization": ["token "]}, "method": "POST", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/423/comments"}, "response": {"body": {"encoding": "utf-8", "string": "{\"url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/comments/955722176\",\"html_url\":\"https://github.com/sigmavirus24/github3.py/pull/423#issuecomment-955722176\",\"issue_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/423\",\"id\":955722176,\"node_id\":\"IC_kwDOADie98449ynA\",\"user\":{\"login\":\"sigmavirus24\",\"id\":240830,\"node_id\":\"MDQ6VXNlcjI0MDgzMA==\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/240830?u=cfe7ddccc58238bedb4176ff2a8dbc200c6a314d&v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"created_at\":\"2021-10-31T15:25:12Z\",\"updated_at\":\"2021-10-31T15:25:12Z\",\"author_association\":\"OWNER\",\"body_html\":\"

Testing pull request comment

\",\"body_text\":\"Testing pull request comment\",\"body\":\"Testing pull request comment\",\"reactions\":{\"url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/comments/955722176/reactions\",\"total_count\":0,\"+1\":0,\"-1\":0,\"laugh\":0,\"hooray\":0,\"confused\":0,\"heart\":0,\"rocket\":0,\"eyes\":0},\"performed_via_github_app\":null}"}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:25:12 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Content-Length": ["1772"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["\"40d5432a8fc378f50d5f96c0a01f9fee435d60824ead98378654a048d26c82cb\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "Location": ["https://api.github.com/repos/sigmavirus24/github3.py/issues/comments/955722176"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4997"], "X-RateLimit-Reset": ["1635696820"], "X-RateLimit-Used": ["3"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "X-GitHub-Request-Id": ["B914:621D:10EDE4D:1FBA05C:617EB557"]}, "status": {"code": 201, "message": "Created"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/423/comments"}, "recorded_at": "2021-10-31T15:25:12"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_create_review.json b/tests/cassettes/PullRequest_create_review.json index 7e0f016b7..fe925c0ff 100644 --- a/tests/cassettes/PullRequest_create_review.json +++ b/tests/cassettes/PullRequest_create_review.json @@ -1 +1 @@ -{"recorded_with": "betamax/0.8.1", "http_interactions": [{"response": {"status": {"message": "OK", "code": 200}, "body": {"base64_string": "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", "string": "", "encoding": "utf-8"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819", "headers": {"ETag": ["W/\"3c21f15ca9e086bb6672dfba42db5d77\""], "X-Runtime-rack": ["0.227852"], "Access-Control-Allow-Origin": ["*"], "Content-Type": ["application/json; charset=utf-8"], "X-RateLimit-Reset": ["1522426266"], "X-XSS-Protection": ["1; mode=block"], "Content-Security-Policy": ["default-src 'none'"], "X-RateLimit-Limit": ["5000"], "X-Frame-Options": ["deny"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Last-Modified": ["Fri, 30 Mar 2018 13:02:33 GMT"], "X-OAuth-Scopes": ["repo, user"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Content-Type-Options": ["nosniff"], "X-Accepted-OAuth-Scopes": [""], "Access-Control-Expose-Headers": ["ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval"], "Server": ["GitHub.com"], "Date": ["Fri, 30 Mar 2018 15:17:54 GMT"], "Transfer-Encoding": ["chunked"], "X-GitHub-Request-Id": ["E6FA:268E:A9FBBF:D9012A:5ABE5522"], "Content-Encoding": ["gzip"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Remaining": ["4997"], "Status": ["200 OK"]}}, "request": {"method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819", "body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Charset": ["utf-8"], "Connection": ["keep-alive"], "Content-Type": ["application/json"], "User-Agent": ["github3.py/1.0.2"], "Accept": ["application/vnd.github.v3.full+json"], "Accept-Encoding": ["gzip, deflate"], "Authorization": ["token "]}}, "recorded_at": "2018-03-30T15:17:54"}, {"response": {"status": {"message": "OK", "code": 200}, "body": {"base64_string": "H4sIAAAAAAAAA51UXW/aMBT9K5X3Chjno4Go66RtfdhDW6miL32JTHwJ1kyc2U4oi/jvu05QRaOKDp5s2fece+5nS6QgKZvOwjiOrucjUlswJG2J0oUsSUpAQe6MXoGSr2TUWc9ZEAbRiPCGO26y2ii0WztX2ZTS/tGySSHdul56ulyXDko3yfWG1rRHf2u+RkhXmAOJ5yX4MCCr5IGnByOZpQNFa7dRAw296w4yMF5ppfQWWYaqP3NE35Aosr/LsriQBZEt1W4NmDwMae8TIa07X1SHaqk/Mik8j8WKGBBnCzvgUNa2REUtNVDpjrBe2tzIykldni/wHRrZtCl4Kf/yy9gQbZHESztfSodCNDTYi+fDe1hLKyMbnu98agzkIBtM9oWUAzwyul0FOAfPfgYx9dJBxsXGz+GKKwv7EVlqsUOLBViHXXSVG+AOrgw0ErZ9+Z1n+PF4f3/3sLj7iW+nB8TKYsMbaWobRNhIfmbDSbWjVa0UnbH5F38x8KdGj72b8du2QHL/mx2+Tzddl396yp31/pCT126tTcat1bnsWqWL6GHx9Ov78+LxCU0yJcvf1u8pH113GlgdraGjFXDK5acRYsqPQ/zAE3+/Ov43zP2hmFkfALmpbj8s6g2tbjFgX/fMwas7Vfx6uZHOYUNybxZM2Ww8DcfhdMHilCVpHL8gE25FtMJ1gSZxIqKZgIgJcZ0EALP5XASJYCAilkDCkvB6GYowIPt/xAKs7CgGAAA=", "string": "", "encoding": "utf-8"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819/reviews", "headers": {"ETag": ["W/\"ee8e505997b9efd39e48c7b75eada0d3\""], "X-Runtime-rack": ["0.274590"], "Access-Control-Allow-Origin": ["*"], "Content-Type": ["application/json; charset=utf-8"], "X-RateLimit-Reset": ["1522426266"], "X-XSS-Protection": ["1; mode=block"], "Content-Security-Policy": ["default-src 'none'"], "X-RateLimit-Limit": ["5000"], "X-Frame-Options": ["deny"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "X-OAuth-Scopes": ["repo, user"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Content-Type-Options": ["nosniff"], "X-Accepted-OAuth-Scopes": [""], "Access-Control-Expose-Headers": ["ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval"], "Server": ["GitHub.com"], "Date": ["Fri, 30 Mar 2018 15:17:55 GMT"], "Transfer-Encoding": ["chunked"], "X-GitHub-Request-Id": ["E6FA:268E:A9FBC7:D90139:5ABE5522"], "Content-Encoding": ["gzip"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Remaining": ["4996"], "Status": ["200 OK"]}}, "request": {"method": "POST", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819/reviews", "body": {"string": "{\"body\": \"Testing create review\", \"comments\": [], \"event\": \"COMMENT\"}", "encoding": "utf-8"}, "headers": {"Accept-Charset": ["utf-8"], "Connection": ["keep-alive"], "Content-Type": ["application/json"], "User-Agent": ["github3.py/1.0.2"], "Accept": ["application/vnd.github.v3.full+json"], "Accept-Encoding": ["gzip, deflate"], "Content-Length": ["69"], "Authorization": ["token "]}}, "recorded_at": "2018-03-30T15:17:55"}]} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 12:22:14 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"b128b8f639f1db94ad374b3c3583d17eb854a0c87841d6bc0ff9c70e9e520060\""], "Last-Modified": ["Sat, 11 Sep 2021 11:32:05 GMT"], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4997"], "X-RateLimit-Reset": ["1635684220"], "X-RateLimit-Used": ["3"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["C696:7D19:35C746F:6823109:617E8A76"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819"}, "recorded_at": "2021-10-31T12:22:14"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"body\": \"Testing create review\", \"comments\": [], \"event\": \"COMMENT\"}"}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Content-Length": ["69"], "Authorization": ["token "]}, "method": "POST", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819/reviews"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA51VXW/aMBT9K1Um7QnqfJUEVDpVg4c90G6IfWgvkePcBK8hzmwnlCL++64TVEHUtQVeEsU+59xzv9haPLFGwdALbMe3g55ViAQi8836Op9HD+vJ/e2EwzD060W1Tq2eVSmQ1mhr5SLjBV5TPFvRmstKuT4eG6jr26FnH3LNJt8GP37d5ezPF3s2yZ5mt+MxXqY11VRGlcyRaKl1qUaEtB/VZcb1soqNHBOFhkJfMrEiFWnZP1VjlkKQJIyxq9D1whiS2HeCQZq6NExi5to2G1DP8ZOP9dhElsm9XOPOODmWLflestVBXUU65pZ6lXeibaNsIJ3LqchzsUaWrr+3hMgzEoNs33mRncmCyC0RegmYZrS0M4ngSp8eVIPaEvPA/jA8CmsnITk5sD0Ow1oXGNGWSChFQ1jFikleai6K0wM8QiObkBkt+BM9jw3RCklMaKeH0qAQDTW27enwFrYlpeQ1ZRuTGgkMeI3JPpOyg0dGvSkB5+C7GWdMPdcQ0WRlRjqluYJdz4pFssEbC1Aau+iCSaAaLiTUHNZt+bVh+Hw/m03vFtMJfnv/gGAjmfH2LssNKas8J6Ez/GBeJPytULGV6T9vJiQ3p9H++PWma/J/NI9dOWX0kJNWeilkRJUSjDetgo7uf95N53gY5bx4UGbZGV/NU0J6sKr+M/xdsTe9YbIPzb2gRI+XxnsN7vZljFoD1nV582I5r0l5g4ZNxSMNj/q1slfximuNrUjNNdd2nb5j9z1n4bgj1x05/m9kwn2It9o/kiCJwfVjn/lhehWnSRAPUjbA31WASzplEKc0tAPP2v0DGEtlAY4GAAA=", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 12:22:15 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"75037ff218637e33b47e3196ed715afa92c07cc9217f58af3b893875b7c6d472\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4996"], "X-RateLimit-Reset": ["1635684220"], "X-RateLimit-Used": ["4"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["C696:7D19:35C748F:6823158:617E8A76"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819/reviews"}, "recorded_at": "2021-10-31T12:22:15"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_create_review_comment.json b/tests/cassettes/PullRequest_create_review_comment.json index 79f60b0ac..3633db23a 100644 --- a/tests/cassettes/PullRequest_create_review_comment.json +++ b/tests/cassettes/PullRequest_create_review_comment.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "Basic "}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/286"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Thu, 25 Jan 2018 12:43:12 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4999", "X-RateLimit-Reset": "1516887792", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"372adf02e27bae1dded67e7e7c603169\"", "Last-Modified": "Tue, 26 Dec 2017 15:52:13 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.262153", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "8BFA:2D36F:10FC775:3218FBD:5A69D0E0"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/286"}, "recorded_at": "2018-01-25T12:43:12"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"body\": \"Testing review comments\", \"commit_id\": \"4437428aefdb50913e2acabd0552bd13021dc38f\", \"path\": \"github3/pulls.py\", \"position\": 6}"}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Content-Length": "135", "Authorization": "Basic "}, "method": "POST", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/286/comments"}, "response": {"body": {"encoding": "utf-8", "string": "{\"url\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/comments/163831550\",\"pull_request_review_id\":91507151,\"id\":163831550,\"diff_hunk\":\"@@ -195,6 +195,25 @@ def close(self):\\n \\\"\\\"\\\"\\n return self.update(self.title, self.body, 'closed')\\n \\n+ @requires_auth\\n+ def create_review_comment(self, body, commit_id, path, position):\\n+ \\\"\\\"\\\"Create a review comment on this pull request.\",\"path\":\"github3/pulls.py\",\"position\":6,\"original_position\":6,\"commit_id\":\"fe5dd44af3eb7110a4a1f8c38f0c9bb235349ff6\",\"original_commit_id\":\"4437428aefdb50913e2acabd0552bd13021dc38f\",\"user\":{\"login\":\"gh3test\",\"id\":2354350,\"avatar_url\":\"https://avatars2.githubusercontent.com/u/2354350?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/gh3test\",\"html_url\":\"https://github.com/gh3test\",\"followers_url\":\"https://api.github.com/users/gh3test/followers\",\"following_url\":\"https://api.github.com/users/gh3test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/gh3test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/gh3test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/gh3test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/gh3test/orgs\",\"repos_url\":\"https://api.github.com/users/gh3test/repos\",\"events_url\":\"https://api.github.com/users/gh3test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/gh3test/received_events\",\"type\":\"User\",\"site_admin\":false},\"body\":\"Testing review comments\",\"created_at\":\"2018-01-25T12:43:12Z\",\"updated_at\":\"2018-01-25T12:43:12Z\",\"html_url\":\"https://github.com/sigmavirus24/github3.py/pull/286#discussion_r163831550\",\"pull_request_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/286\",\"author_association\":\"NONE\",\"_links\":{\"self\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/comments/163831550\"},\"html\":{\"href\":\"https://github.com/sigmavirus24/github3.py/pull/286#discussion_r163831550\"},\"pull_request\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/286\"}},\"body_html\":\"

Testing review comments

\",\"body_text\":\"Testing review comments\"}"}, "headers": {"Server": "GitHub.com", "Date": "Thu, 25 Jan 2018 12:43:13 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "2149", "Status": "201 Created", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4998", "X-RateLimit-Reset": "1516887792", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"c72a7036a3b42e41a69835d039443704\"", "Location": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/comments/163831550", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.407083", "X-GitHub-Request-Id": "8BFA:2D36F:10FC792:3219002:5A69D0E0"}, "status": {"code": 201, "message": "Created"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/286/comments"}, "recorded_at": "2018-01-25T12:43:13"}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/286"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:26:56 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"16a4a0c12b69119aa70a5dc1be9b5434bd4ada2345c9ed8cd22564002268d61e\""], "Last-Modified": ["Sun, 31 Oct 2021 15:20:24 GMT"], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4996"], "X-RateLimit-Reset": ["1635696820"], "X-RateLimit-Used": ["4"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["E134:1FBC:25E875:82B425:617EB5BF"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/286"}, "recorded_at": "2021-10-31T15:26:56"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"body\": \"Testing review comments\", \"commit_id\": \"4437428aefdb50913e2acabd0552bd13021dc38f\", \"path\": \"github3/pulls.py\", \"position\": 6}"}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Content-Length": ["135"], "Authorization": ["token "]}, "method": "POST", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/286/comments"}, "response": {"body": {"encoding": "utf-8", "string": "{\"url\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/comments/739838553\",\"pull_request_review_id\":793731108,\"id\":739838553,\"node_id\":\"PRRC_kwDOADie984sGQpZ\",\"diff_hunk\":\"@@ -195,6 +195,25 @@ def close(self):\\n \\\"\\\"\\\"\\n return self.update(self.title, self.body, 'closed')\\n \\n+ @requires_auth\\n+ def create_review_comment(self, body, commit_id, path, position):\\n+ \\\"\\\"\\\"Create a review comment on this pull request.\",\"path\":\"github3/pulls.py\",\"position\":6,\"original_position\":6,\"commit_id\":\"fe5dd44af3eb7110a4a1f8c38f0c9bb235349ff6\",\"original_commit_id\":\"4437428aefdb50913e2acabd0552bd13021dc38f\",\"user\":{\"login\":\"sigmavirus24\",\"id\":240830,\"node_id\":\"MDQ6VXNlcjI0MDgzMA==\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"body\":\"Testing review comments\",\"created_at\":\"2021-10-31T15:26:56Z\",\"updated_at\":\"2021-10-31T15:26:56Z\",\"html_url\":\"https://github.com/sigmavirus24/github3.py/pull/286#discussion_r739838553\",\"pull_request_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/286\",\"author_association\":\"OWNER\",\"_links\":{\"self\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/comments/739838553\"},\"html\":{\"href\":\"https://github.com/sigmavirus24/github3.py/pull/286#discussion_r739838553\"},\"pull_request\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/286\"}},\"body_html\":\"

Testing review comments

\",\"body_text\":\"Testing review comments\",\"reactions\":{\"url\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/comments/739838553/reactions\",\"total_count\":0,\"+1\":0,\"-1\":0,\"laugh\":0,\"hooray\":0,\"confused\":0,\"heart\":0,\"rocket\":0,\"eyes\":0},\"start_line\":null,\"original_start_line\":null,\"start_side\":null,\"line\":200,\"original_line\":200,\"side\":\"RIGHT\"}"}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:26:56 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Content-Length": ["2588"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["\"ece5ae4c62f10c03cee7fba3183ee5df6e7186ee9cfabc7d115dab14e0b332dd\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "Location": ["https://api.github.com/repos/sigmavirus24/github3.py/pulls/comments/739838553"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4995"], "X-RateLimit-Reset": ["1635696820"], "X-RateLimit-Used": ["5"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "X-GitHub-Request-Id": ["E134:1FBC:25E878:82B431:617EB5C0"]}, "status": {"code": 201, "message": "Created"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/286/comments"}, "recorded_at": "2021-10-31T15:26:56"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_create_review_requests.json b/tests/cassettes/PullRequest_create_review_requests.json index 0393f866a..00f91f0ad 100644 --- a/tests/cassettes/PullRequest_create_review_requests.json +++ b/tests/cassettes/PullRequest_create_review_requests.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "User-Agent": ["github3.py/1.1.0"], "Accept-Charset": ["utf-8"], "Connection": ["keep-alive"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873"}, "response": {"body": {"string": "", "base64_string": "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", "encoding": "utf-8"}, "headers": {"X-XSS-Protection": ["1; mode=block"], "Content-Security-Policy": ["default-src 'none'"], "Access-Control-Expose-Headers": ["ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval"], "Transfer-Encoding": ["chunked"], "Last-Modified": ["Tue, 31 Jul 2018 14:57:42 GMT"], "Access-Control-Allow-Origin": ["*"], "X-Frame-Options": ["deny"], "Status": ["200 OK"], "X-GitHub-Request-Id": ["9C0A:3FAD:710C4A:EF0B0C:5B6078F0"], "ETag": ["W/\"e16f3cd04ae275c3bf00290d716e8e65\""], "Date": ["Tue, 31 Jul 2018 14:57:53 GMT"], "X-RateLimit-Remaining": ["4995"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "Server": ["GitHub.com"], "X-OAuth-Scopes": ["public_repo, read:user"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-Content-Type-Options": ["nosniff"], "Content-Encoding": ["gzip"], "X-Runtime-rack": ["0.198781"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP"], "X-RateLimit-Limit": ["5000"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Type": ["application/json; charset=utf-8"], "X-Accepted-OAuth-Scopes": [""], "X-RateLimit-Reset": ["1533052364"]}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873"}, "recorded_at": "2018-07-31T14:57:53"}, {"request": {"body": {"string": "{\"reviewers\": [\"sigmavirus24\"]}", "encoding": "utf-8"}, "headers": {"Content-Length": ["31"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "User-Agent": ["github3.py/1.1.0"], "Accept-Charset": ["utf-8"], "Connection": ["keep-alive"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "POST", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/requested_reviewers"}, "response": {"body": {"string": "{\"url\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/873\",\"id\":204405647,\"node_id\":\"MDExOlB1bGxSZXF1ZXN0MjA0NDA1NjQ3\",\"html_url\":\"https://github.com/sigmavirus24/github3.py/pull/873\",\"diff_url\":\"https://github.com/sigmavirus24/github3.py/pull/873.diff\",\"patch_url\":\"https://github.com/sigmavirus24/github3.py/pull/873.patch\",\"issue_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/873\",\"number\":873,\"state\":\"open\",\"locked\":false,\"title\":\"Add support for review requests\",\"user\":{\"login\":\"jacquerie\",\"id\":381280,\"node_id\":\"MDQ6VXNlcjM4MTI4MA==\",\"avatar_url\":\"https://avatars2.githubusercontent.com/u/381280?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/jacquerie\",\"html_url\":\"https://github.com/jacquerie\",\"followers_url\":\"https://api.github.com/users/jacquerie/followers\",\"following_url\":\"https://api.github.com/users/jacquerie/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/jacquerie/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/jacquerie/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/jacquerie/subscriptions\",\"organizations_url\":\"https://api.github.com/users/jacquerie/orgs\",\"repos_url\":\"https://api.github.com/users/jacquerie/repos\",\"events_url\":\"https://api.github.com/users/jacquerie/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/jacquerie/received_events\",\"type\":\"User\",\"site_admin\":false},\"body\":\"Closes #787 \\r\\n\\r\\nCurrently missing the integration tests, because I want to record them by requesting a review on this very PR : )\",\"created_at\":\"2018-07-27T11:31:15Z\",\"updated_at\":\"2018-07-31T14:57:53Z\",\"closed_at\":null,\"merged_at\":null,\"merge_commit_sha\":\"2c392b4fe1227373971fc69bd40c274c98237401\",\"assignee\":null,\"assignees\":[],\"requested_reviewers\":[{\"login\":\"sigmavirus24\",\"id\":240830,\"node_id\":\"MDQ6VXNlcjI0MDgzMA==\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false}],\"requested_teams\":[],\"labels\":[],\"milestone\":null,\"commits_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/commits\",\"review_comments_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/comments\",\"review_comment_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/comments{/number}\",\"comments_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/873/comments\",\"statuses_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/statuses/f9338626397176687c35c650ad184637c25cb160\",\"head\":{\"label\":\"jacquerie:add-review-requests\",\"ref\":\"add-review-requests\",\"sha\":\"f9338626397176687c35c650ad184637c25cb160\",\"user\":{\"login\":\"jacquerie\",\"id\":381280,\"node_id\":\"MDQ6VXNlcjM4MTI4MA==\",\"avatar_url\":\"https://avatars2.githubusercontent.com/u/381280?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/jacquerie\",\"html_url\":\"https://github.com/jacquerie\",\"followers_url\":\"https://api.github.com/users/jacquerie/followers\",\"following_url\":\"https://api.github.com/users/jacquerie/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/jacquerie/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/jacquerie/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/jacquerie/subscriptions\",\"organizations_url\":\"https://api.github.com/users/jacquerie/orgs\",\"repos_url\":\"https://api.github.com/users/jacquerie/repos\",\"events_url\":\"https://api.github.com/users/jacquerie/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/jacquerie/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":140643310,\"node_id\":\"MDEwOlJlcG9zaXRvcnkxNDA2NDMzMTA=\",\"name\":\"github3.py\",\"full_name\":\"jacquerie/github3.py\",\"owner\":{\"login\":\"jacquerie\",\"id\":381280,\"node_id\":\"MDQ6VXNlcjM4MTI4MA==\",\"avatar_url\":\"https://avatars2.githubusercontent.com/u/381280?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/jacquerie\",\"html_url\":\"https://github.com/jacquerie\",\"followers_url\":\"https://api.github.com/users/jacquerie/followers\",\"following_url\":\"https://api.github.com/users/jacquerie/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/jacquerie/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/jacquerie/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/jacquerie/subscriptions\",\"organizations_url\":\"https://api.github.com/users/jacquerie/orgs\",\"repos_url\":\"https://api.github.com/users/jacquerie/repos\",\"events_url\":\"https://api.github.com/users/jacquerie/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/jacquerie/received_events\",\"type\":\"User\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/jacquerie/github3.py\",\"description\":\"Hi, I'm a library for interacting with GItHub's REST API in a convenient and ergonomic way. I work on Python 2.7, 3.4, 3.5, and 3.6\",\"fork\":true,\"url\":\"https://api.github.com/repos/jacquerie/github3.py\",\"forks_url\":\"https://api.github.com/repos/jacquerie/github3.py/forks\",\"keys_url\":\"https://api.github.com/repos/jacquerie/github3.py/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/jacquerie/github3.py/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/jacquerie/github3.py/teams\",\"hooks_url\":\"https://api.github.com/repos/jacquerie/github3.py/hooks\",\"issue_events_url\":\"https://api.github.com/repos/jacquerie/github3.py/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/jacquerie/github3.py/events\",\"assignees_url\":\"https://api.github.com/repos/jacquerie/github3.py/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/jacquerie/github3.py/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/jacquerie/github3.py/tags\",\"blobs_url\":\"https://api.github.com/repos/jacquerie/github3.py/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/jacquerie/github3.py/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/jacquerie/github3.py/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/jacquerie/github3.py/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/jacquerie/github3.py/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/jacquerie/github3.py/languages\",\"stargazers_url\":\"https://api.github.com/repos/jacquerie/github3.py/stargazers\",\"contributors_url\":\"https://api.github.com/repos/jacquerie/github3.py/contributors\",\"subscribers_url\":\"https://api.github.com/repos/jacquerie/github3.py/subscribers\",\"subscription_url\":\"https://api.github.com/repos/jacquerie/github3.py/subscription\",\"commits_url\":\"https://api.github.com/repos/jacquerie/github3.py/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/jacquerie/github3.py/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/jacquerie/github3.py/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/jacquerie/github3.py/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/jacquerie/github3.py/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/jacquerie/github3.py/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/jacquerie/github3.py/merges\",\"archive_url\":\"https://api.github.com/repos/jacquerie/github3.py/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/jacquerie/github3.py/downloads\",\"issues_url\":\"https://api.github.com/repos/jacquerie/github3.py/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/jacquerie/github3.py/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/jacquerie/github3.py/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/jacquerie/github3.py/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/jacquerie/github3.py/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/jacquerie/github3.py/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/jacquerie/github3.py/deployments\",\"created_at\":\"2018-07-12T01:08:54Z\",\"updated_at\":\"2018-07-12T01:08:59Z\",\"pushed_at\":\"2018-07-31T12:40:49Z\",\"git_url\":\"git://github.com/jacquerie/github3.py.git\",\"ssh_url\":\"git@github.com:jacquerie/github3.py.git\",\"clone_url\":\"https://github.com/jacquerie/github3.py.git\",\"svn_url\":\"https://github.com/jacquerie/github3.py\",\"homepage\":\"https://github3.readthedocs.io\",\"size\":52276,\"stargazers_count\":0,\"watchers_count\":0,\"language\":\"Python\",\"has_issues\":false,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":false,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"archived\":false,\"open_issues_count\":0,\"license\":{\"key\":\"other\",\"name\":\"Other\",\"spdx_id\":null,\"url\":null,\"node_id\":\"MDc6TGljZW5zZTA=\"},\"forks\":0,\"open_issues\":0,\"watchers\":0,\"default_branch\":\"develop\"}},\"base\":{\"label\":\"sigmavirus24:master\",\"ref\":\"master\",\"sha\":\"6824ebce0059fce75bace08bb4cfb37e2329a2c7\",\"user\":{\"login\":\"sigmavirus24\",\"id\":240830,\"node_id\":\"MDQ6VXNlcjI0MDgzMA==\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":3710711,\"node_id\":\"MDEwOlJlcG9zaXRvcnkzNzEwNzEx\",\"name\":\"github3.py\",\"full_name\":\"sigmavirus24/github3.py\",\"owner\":{\"login\":\"sigmavirus24\",\"id\":240830,\"node_id\":\"MDQ6VXNlcjI0MDgzMA==\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/sigmavirus24/github3.py\",\"description\":\"Hi, I'm a library for interacting with GItHub's REST API in a convenient and ergonomic way. I work on Python 2.7, 3.4, 3.5, and 3.6\",\"fork\":false,\"url\":\"https://api.github.com/repos/sigmavirus24/github3.py\",\"forks_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/forks\",\"keys_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/teams\",\"hooks_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/hooks\",\"issue_events_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/events\",\"assignees_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/tags\",\"blobs_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/languages\",\"stargazers_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/stargazers\",\"contributors_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/contributors\",\"subscribers_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/subscribers\",\"subscription_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/subscription\",\"commits_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/merges\",\"archive_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/downloads\",\"issues_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/deployments\",\"created_at\":\"2012-03-13T19:58:53Z\",\"updated_at\":\"2018-07-30T15:45:54Z\",\"pushed_at\":\"2018-07-31T12:40:50Z\",\"git_url\":\"git://github.com/sigmavirus24/github3.py.git\",\"ssh_url\":\"git@github.com:sigmavirus24/github3.py.git\",\"clone_url\":\"https://github.com/sigmavirus24/github3.py.git\",\"svn_url\":\"https://github.com/sigmavirus24/github3.py\",\"homepage\":\"https://github3.readthedocs.io\",\"size\":52238,\"stargazers_count\":814,\"watchers_count\":814,\"language\":\"Python\",\"has_issues\":true,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":false,\"has_pages\":false,\"forks_count\":302,\"mirror_url\":null,\"archived\":false,\"open_issues_count\":54,\"license\":{\"key\":\"other\",\"name\":\"Other\",\"spdx_id\":null,\"url\":null,\"node_id\":\"MDc6TGljZW5zZTA=\"},\"forks\":302,\"open_issues\":54,\"watchers\":814,\"default_branch\":\"master\"}},\"_links\":{\"self\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/873\"},\"html\":{\"href\":\"https://github.com/sigmavirus24/github3.py/pull/873\"},\"issue\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/873\"},\"comments\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/873/comments\"},\"review_comments\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/comments\"},\"review_comment\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/comments{/number}\"},\"commits\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/commits\"},\"statuses\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/statuses/f9338626397176687c35c650ad184637c25cb160\"}},\"author_association\":\"COLLABORATOR\",\"body_html\":\"

Closes #787

\\n

Currently missing the integration tests, because I want to record them by requesting a review on this very PR : )

\",\"body_text\":\"Closes #787\\nCurrently missing the integration tests, because I want to record them by requesting a review on this very PR : )\"}", "encoding": "utf-8"}, "headers": {"Content-Length": ["17225"], "X-XSS-Protection": ["1; mode=block"], "Content-Security-Policy": ["default-src 'none'"], "Access-Control-Expose-Headers": ["ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval"], "Location": ["https://api.github.com/repos/sigmavirus24/github3.py/pulls/873"], "Access-Control-Allow-Origin": ["*"], "X-Frame-Options": ["deny"], "Status": ["201 Created"], "X-GitHub-Request-Id": ["9C0A:3FAD:710C64:EF0B3F:5B6078F1"], "ETag": ["\"f1798b9beac5f04fdd4dda4a3c175f45\""], "Date": ["Tue, 31 Jul 2018 14:57:53 GMT"], "X-RateLimit-Remaining": ["4994"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "Server": ["GitHub.com"], "X-OAuth-Scopes": ["public_repo, read:user"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-Content-Type-Options": ["nosniff"], "X-Runtime-rack": ["0.506507"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP"], "X-RateLimit-Limit": ["5000"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Type": ["application/json; charset=utf-8"], "X-Accepted-OAuth-Scopes": [""], "X-RateLimit-Reset": ["1533052364"]}, "status": {"message": "Created", "code": 201}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/requested_reviewers"}, "recorded_at": "2018-07-31T14:57:53"}], "recorded_with": "betamax/0.8.1"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 14:44:52 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"210aec731ffaac9b5849ad338074ad82fbd6c68d87a81fa9be77fbe477f17929\""], "Last-Modified": ["Sun, 24 Oct 2021 17:27:32 GMT"], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4997"], "X-RateLimit-Reset": ["1635693219"], "X-RateLimit-Used": ["3"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["C698:6144:348F8EA:6D8575F:617EABE3"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873"}, "recorded_at": "2021-10-31T14:44:52"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"reviewers\": [\"sigmavirus24\"]}"}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Content-Length": ["31"], "Authorization": ["token "]}, "method": "POST", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/requested_reviewers"}, "response": {"body": {"encoding": "utf-8", "string": "{\"url\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/873\",\"id\":204405647,\"node_id\":\"MDExOlB1bGxSZXF1ZXN0MjA0NDA1NjQ3\",\"html_url\":\"https://github.com/sigmavirus24/github3.py/pull/873\",\"diff_url\":\"https://github.com/sigmavirus24/github3.py/pull/873.diff\",\"patch_url\":\"https://github.com/sigmavirus24/github3.py/pull/873.patch\",\"issue_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/873\",\"number\":873,\"state\":\"closed\",\"locked\":false,\"title\":\"Add support for review requests\",\"user\":{\"login\":\"jacquerie\",\"id\":381280,\"node_id\":\"MDQ6VXNlcjM4MTI4MA==\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/381280?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/jacquerie\",\"html_url\":\"https://github.com/jacquerie\",\"followers_url\":\"https://api.github.com/users/jacquerie/followers\",\"following_url\":\"https://api.github.com/users/jacquerie/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/jacquerie/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/jacquerie/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/jacquerie/subscriptions\",\"organizations_url\":\"https://api.github.com/users/jacquerie/orgs\",\"repos_url\":\"https://api.github.com/users/jacquerie/repos\",\"events_url\":\"https://api.github.com/users/jacquerie/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/jacquerie/received_events\",\"type\":\"User\",\"site_admin\":false},\"body\":\"Closes #787 \\r\\n\\r\\nCurrently missing the integration tests, because I want to record them by requesting a review on this very PR : )\",\"created_at\":\"2018-07-27T11:31:15Z\",\"updated_at\":\"2021-10-31T14:44:52Z\",\"closed_at\":\"2018-08-01T13:18:48Z\",\"merged_at\":\"2018-08-01T13:18:47Z\",\"merge_commit_sha\":\"87af5a1d26597d7cf1a843199a1b5a2449cd8069\",\"assignee\":null,\"assignees\":[],\"requested_reviewers\":[{\"login\":\"sigmavirus24\",\"id\":240830,\"node_id\":\"MDQ6VXNlcjI0MDgzMA==\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false}],\"requested_teams\":[],\"labels\":[],\"milestone\":null,\"draft\":false,\"commits_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/commits\",\"review_comments_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/comments\",\"review_comment_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/comments{/number}\",\"comments_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/873/comments\",\"statuses_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/statuses/f07a252af8c1ab2e3fcdd18eb41edc63453c5798\",\"head\":{\"label\":\"jacquerie:add-review-requests\",\"ref\":\"add-review-requests\",\"sha\":\"f07a252af8c1ab2e3fcdd18eb41edc63453c5798\",\"user\":{\"login\":\"jacquerie\",\"id\":381280,\"node_id\":\"MDQ6VXNlcjM4MTI4MA==\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/381280?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/jacquerie\",\"html_url\":\"https://github.com/jacquerie\",\"followers_url\":\"https://api.github.com/users/jacquerie/followers\",\"following_url\":\"https://api.github.com/users/jacquerie/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/jacquerie/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/jacquerie/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/jacquerie/subscriptions\",\"organizations_url\":\"https://api.github.com/users/jacquerie/orgs\",\"repos_url\":\"https://api.github.com/users/jacquerie/repos\",\"events_url\":\"https://api.github.com/users/jacquerie/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/jacquerie/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":140643310,\"node_id\":\"MDEwOlJlcG9zaXRvcnkxNDA2NDMzMTA=\",\"name\":\"github3.py\",\"full_name\":\"jacquerie/github3.py\",\"private\":false,\"owner\":{\"login\":\"jacquerie\",\"id\":381280,\"node_id\":\"MDQ6VXNlcjM4MTI4MA==\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/381280?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/jacquerie\",\"html_url\":\"https://github.com/jacquerie\",\"followers_url\":\"https://api.github.com/users/jacquerie/followers\",\"following_url\":\"https://api.github.com/users/jacquerie/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/jacquerie/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/jacquerie/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/jacquerie/subscriptions\",\"organizations_url\":\"https://api.github.com/users/jacquerie/orgs\",\"repos_url\":\"https://api.github.com/users/jacquerie/repos\",\"events_url\":\"https://api.github.com/users/jacquerie/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/jacquerie/received_events\",\"type\":\"User\",\"site_admin\":false},\"html_url\":\"https://github.com/jacquerie/github3.py\",\"description\":\"Hi, I'm a library for interacting with GItHub's REST API in a convenient and ergonomic way. I work on Python 2.7, 3.4, 3.5, and 3.6\",\"fork\":true,\"url\":\"https://api.github.com/repos/jacquerie/github3.py\",\"forks_url\":\"https://api.github.com/repos/jacquerie/github3.py/forks\",\"keys_url\":\"https://api.github.com/repos/jacquerie/github3.py/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/jacquerie/github3.py/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/jacquerie/github3.py/teams\",\"hooks_url\":\"https://api.github.com/repos/jacquerie/github3.py/hooks\",\"issue_events_url\":\"https://api.github.com/repos/jacquerie/github3.py/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/jacquerie/github3.py/events\",\"assignees_url\":\"https://api.github.com/repos/jacquerie/github3.py/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/jacquerie/github3.py/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/jacquerie/github3.py/tags\",\"blobs_url\":\"https://api.github.com/repos/jacquerie/github3.py/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/jacquerie/github3.py/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/jacquerie/github3.py/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/jacquerie/github3.py/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/jacquerie/github3.py/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/jacquerie/github3.py/languages\",\"stargazers_url\":\"https://api.github.com/repos/jacquerie/github3.py/stargazers\",\"contributors_url\":\"https://api.github.com/repos/jacquerie/github3.py/contributors\",\"subscribers_url\":\"https://api.github.com/repos/jacquerie/github3.py/subscribers\",\"subscription_url\":\"https://api.github.com/repos/jacquerie/github3.py/subscription\",\"commits_url\":\"https://api.github.com/repos/jacquerie/github3.py/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/jacquerie/github3.py/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/jacquerie/github3.py/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/jacquerie/github3.py/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/jacquerie/github3.py/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/jacquerie/github3.py/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/jacquerie/github3.py/merges\",\"archive_url\":\"https://api.github.com/repos/jacquerie/github3.py/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/jacquerie/github3.py/downloads\",\"issues_url\":\"https://api.github.com/repos/jacquerie/github3.py/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/jacquerie/github3.py/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/jacquerie/github3.py/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/jacquerie/github3.py/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/jacquerie/github3.py/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/jacquerie/github3.py/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/jacquerie/github3.py/deployments\",\"created_at\":\"2018-07-12T01:08:54Z\",\"updated_at\":\"2018-07-12T01:08:59Z\",\"pushed_at\":\"2018-10-25T00:28:41Z\",\"git_url\":\"git://github.com/jacquerie/github3.py.git\",\"ssh_url\":\"git@github.com:jacquerie/github3.py.git\",\"clone_url\":\"https://github.com/jacquerie/github3.py.git\",\"svn_url\":\"https://github.com/jacquerie/github3.py\",\"homepage\":\"https://github3.readthedocs.io\",\"size\":52387,\"stargazers_count\":0,\"watchers_count\":0,\"language\":\"Python\",\"has_issues\":false,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":false,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"archived\":false,\"disabled\":false,\"open_issues_count\":0,\"license\":{\"key\":\"other\",\"name\":\"Other\",\"spdx_id\":\"NOASSERTION\",\"url\":null,\"node_id\":\"MDc6TGljZW5zZTA=\"},\"allow_forking\":true,\"is_template\":false,\"topics\":[],\"visibility\":\"public\",\"forks\":0,\"open_issues\":0,\"watchers\":0,\"default_branch\":\"develop\"}},\"base\":{\"label\":\"sigmavirus24:master\",\"ref\":\"master\",\"sha\":\"6824ebce0059fce75bace08bb4cfb37e2329a2c7\",\"user\":{\"login\":\"sigmavirus24\",\"id\":240830,\"node_id\":\"MDQ6VXNlcjI0MDgzMA==\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":3710711,\"node_id\":\"MDEwOlJlcG9zaXRvcnkzNzEwNzEx\",\"name\":\"github3.py\",\"full_name\":\"sigmavirus24/github3.py\",\"private\":false,\"owner\":{\"login\":\"sigmavirus24\",\"id\":240830,\"node_id\":\"MDQ6VXNlcjI0MDgzMA==\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"html_url\":\"https://github.com/sigmavirus24/github3.py\",\"description\":\" Hi, I'm a library for interacting with GItHub's REST API in a convenient and ergonomic way. I work on Python 3.6+.\",\"fork\":false,\"url\":\"https://api.github.com/repos/sigmavirus24/github3.py\",\"forks_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/forks\",\"keys_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/teams\",\"hooks_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/hooks\",\"issue_events_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/events\",\"assignees_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/tags\",\"blobs_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/languages\",\"stargazers_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/stargazers\",\"contributors_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/contributors\",\"subscribers_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/subscribers\",\"subscription_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/subscription\",\"commits_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/merges\",\"archive_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/downloads\",\"issues_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/deployments\",\"created_at\":\"2012-03-13T19:58:53Z\",\"updated_at\":\"2021-10-31T00:16:02Z\",\"pushed_at\":\"2021-10-31T00:15:58Z\",\"git_url\":\"git://github.com/sigmavirus24/github3.py.git\",\"ssh_url\":\"git@github.com:sigmavirus24/github3.py.git\",\"clone_url\":\"https://github.com/sigmavirus24/github3.py.git\",\"svn_url\":\"https://github.com/sigmavirus24/github3.py\",\"homepage\":\"https://github3.readthedocs.io\",\"size\":53644,\"stargazers_count\":1064,\"watchers_count\":1064,\"language\":\"Python\",\"has_issues\":true,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":false,\"has_pages\":false,\"forks_count\":387,\"mirror_url\":null,\"archived\":false,\"disabled\":false,\"open_issues_count\":80,\"license\":{\"key\":\"other\",\"name\":\"Other\",\"spdx_id\":\"NOASSERTION\",\"url\":null,\"node_id\":\"MDc6TGljZW5zZTA=\"},\"allow_forking\":true,\"is_template\":false,\"topics\":[\"github\",\"github-api\",\"python\",\"python36\",\"python37\",\"python38\",\"python39\",\"rest\",\"rest-api\",\"rest-client\"],\"visibility\":\"public\",\"forks\":387,\"open_issues\":80,\"watchers\":1064,\"default_branch\":\"main\"}},\"_links\":{\"self\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/873\"},\"html\":{\"href\":\"https://github.com/sigmavirus24/github3.py/pull/873\"},\"issue\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/873\"},\"comments\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/873/comments\"},\"review_comments\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/comments\"},\"review_comment\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/comments{/number}\"},\"commits\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/commits\"},\"statuses\":{\"href\":\"https://api.github.com/repos/sigmavirus24/github3.py/statuses/f07a252af8c1ab2e3fcdd18eb41edc63453c5798\"}},\"author_association\":\"COLLABORATOR\",\"auto_merge\":null,\"body_html\":\"

Closes #787

\\n

Currently missing the integration tests, because I want to record them by requesting a review on this very PR : )

\",\"body_text\":\"Closes #787\\nCurrently missing the integration tests, because I want to record them by requesting a review on this very PR : )\",\"active_lock_reason\":null}"}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 14:44:52 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Content-Length": ["17695"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["\"98f44c3ccae043956504199e264930254208c5b82eede813f6baf605e9bbab6f\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "Location": ["https://api.github.com/repos/sigmavirus24/github3.py/pulls/873"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4996"], "X-RateLimit-Reset": ["1635693219"], "X-RateLimit-Used": ["4"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "X-GitHub-Request-Id": ["C698:6144:348F902:6D8579C:617EABE4"]}, "status": {"code": 201, "message": "Created"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/requested_reviewers"}, "recorded_at": "2021-10-31T14:44:52"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_delete_review_requests.json b/tests/cassettes/PullRequest_delete_review_requests.json index 23afdeed5..43f9616f5 100644 --- a/tests/cassettes/PullRequest_delete_review_requests.json +++ b/tests/cassettes/PullRequest_delete_review_requests.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "User-Agent": ["github3.py/1.1.0"], "Accept-Charset": ["utf-8"], "Connection": ["keep-alive"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873"}, "response": {"body": {"string": "", "base64_string": "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", "encoding": "utf-8"}, "headers": {"X-XSS-Protection": ["1; mode=block"], "Content-Security-Policy": ["default-src 'none'"], "Access-Control-Expose-Headers": ["ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval"], "Transfer-Encoding": ["chunked"], "Last-Modified": ["Tue, 31 Jul 2018 12:37:29 GMT"], "Access-Control-Allow-Origin": ["*"], "X-Frame-Options": ["deny"], "Status": ["200 OK"], "X-GitHub-Request-Id": ["9746:3FAC:7DC188:102C2C9:5B605840"], "ETag": ["W/\"cc4210ad9f1cd12d4300e31b40a12398\""], "Date": ["Tue, 31 Jul 2018 12:38:25 GMT"], "X-RateLimit-Remaining": ["4995"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "Server": ["GitHub.com"], "X-OAuth-Scopes": ["public_repo, read:user"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-Content-Type-Options": ["nosniff"], "Content-Encoding": ["gzip"], "X-Runtime-rack": ["0.225128"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP"], "X-RateLimit-Limit": ["5000"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Type": ["application/json; charset=utf-8"], "X-Accepted-OAuth-Scopes": [""], "X-RateLimit-Reset": ["1533044057"]}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873"}, "recorded_at": "2018-07-31T12:38:25"}, {"request": {"body": {"string": "{\"reviewers\": [\"sigmavirus24\"]}", "encoding": "utf-8"}, "headers": {"Content-Length": ["31"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "User-Agent": ["github3.py/1.1.0"], "Accept-Charset": ["utf-8"], "Connection": ["keep-alive"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "DELETE", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/requested_reviewers"}, "response": {"body": {"string": "", "base64_string": "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", "encoding": "utf-8"}, "headers": {"X-XSS-Protection": ["1; mode=block"], "Content-Security-Policy": ["default-src 'none'"], "Access-Control-Expose-Headers": ["ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval"], "Transfer-Encoding": ["chunked"], "Access-Control-Allow-Origin": ["*"], "X-Frame-Options": ["deny"], "Status": ["200 OK"], "X-GitHub-Request-Id": ["9746:3FAC:7DC1C0:102C315:5B605841"], "ETag": ["W/\"0962ba2945f8ad21491ca6d3038d3bd3\""], "Date": ["Tue, 31 Jul 2018 12:38:25 GMT"], "X-RateLimit-Remaining": ["4994"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "Server": ["GitHub.com"], "X-OAuth-Scopes": ["public_repo, read:user"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-Content-Type-Options": ["nosniff"], "Content-Encoding": ["gzip"], "X-Runtime-rack": ["0.286925"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP"], "X-RateLimit-Limit": ["5000"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Type": ["application/json; charset=utf-8"], "X-Accepted-OAuth-Scopes": [""], "X-RateLimit-Reset": ["1533044057"]}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/requested_reviewers"}, "recorded_at": "2018-07-31T12:38:26"}], "recorded_with": "betamax/0.8.1"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:27:37 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"bb2c39db4ce332a06508733deded07d2d9c5c8ffd61411f7bc76b5636ed05e9a\""], "Last-Modified": ["Sun, 31 Oct 2021 14:44:52 GMT"], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4994"], "X-RateLimit-Reset": ["1635696820"], "X-RateLimit-Used": ["6"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["E136:6E46:8CB3B2:1512F77:617EB5E8"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873"}, "recorded_at": "2021-10-31T15:27:37"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"reviewers\": [\"sigmavirus24\"]}"}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Content-Length": ["31"], "Authorization": ["token "]}, "method": "DELETE", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/requested_reviewers"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:27:37 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"09627ddb417327c26491f07aff4a65e318f93ff1febebd9c81dc8b1d2feade5a\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4993"], "X-RateLimit-Reset": ["1635696820"], "X-RateLimit-Used": ["7"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["E136:6E46:8CB3BE:1512F93:617EB5E9"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/requested_reviewers"}, "recorded_at": "2021-10-31T15:27:37"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_diff.json b/tests/cassettes/PullRequest_diff.json index ed70312cc..b76d41669 100644 --- a/tests/cassettes/PullRequest_diff.json +++ b/tests/cassettes/PullRequest_diff.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Thu, 25 Jan 2018 22:56:35 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "59", "X-RateLimit-Reset": "1516924595", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"6a40ed61fa463a6dbe2bdd37dd9ae9f7\"", "Last-Modified": "Wed, 24 Jan 2018 15:25:22 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.087680", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "9568:2D373:9B5181:1674115:5A6A60A3"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2018-01-25T22:56:35"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.diff", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "string": "diff --git a/github3/repos/release.py b/github3/repos/release.py\nindex 8b4f9424..10e0b774 100644\n--- a/github3/repos/release.py\n+++ b/github3/repos/release.py\n@@ -22,6 +22,8 @@ class Release(GitHubCore):\n def __init__(self, release, session=None):\n super(Release, self).__init__(release, session)\n self._api = release.get('url')\n+ #: List of :class:`Asset ` objects for this release\n+ self.assets = [Asset(i, self) for i in release.get('assets', [])]\n #: URL for uploaded assets\n self.assets_url = release.get('assets_url')\n #: Body of the release (the description)\ndiff --git a/tests/unit/test_repos_release.py b/tests/unit/test_repos_release.py\nindex c9d12f6d..d0cd4130 100644\n--- a/tests/unit/test_repos_release.py\n+++ b/tests/unit/test_repos_release.py\n@@ -15,6 +15,18 @@ class TestRelease(UnitHelper):\n example_data = {\n \"url\": releases_url(\"/1\"),\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n+ \"assets\": [{\n+ \"url\": releases_url(\"/assets/1\"),\n+ \"id\": 1,\n+ \"name\": \"example.zip\",\n+ \"label\": \"short description\",\n+ \"state\": \"uploaded\",\n+ \"content_type\": \"application/zip\",\n+ \"size\": 1024,\n+ \"download_count\": 42,\n+ \"created_at\": \"2013-02-27T19:35:32Z\",\n+ \"updated_at\": \"2013-02-27T19:35:32Z\"\n+ }],\n \"assets_url\": releases_url(\"/1/assets\"),\n \"upload_url\": releases_url(\"/1/assets{?name}\"),\n \"id\": 1,\n@@ -29,6 +41,10 @@ class TestRelease(UnitHelper):\n }\n \n # Attribute tests\n+ def test_assets(self):\n+ assert self.instance.assets is not None\n+ assert isinstance(self.instance.assets[0], Asset)\n+\n def test_has_upload_urlt(self):\n assert self.instance.upload_urlt is not None\n \n"}, "headers": {"Server": "GitHub.com", "Date": "Thu, 25 Jan 2018 22:56:35 GMT", "Content-Type": "application/vnd.github.diff; charset=utf-8", "Content-Length": "1883", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "58", "X-RateLimit-Reset": "1516924595", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "\"61e88f2aa8636ea26de6af364acd35cd\"", "Last-Modified": "Wed, 24 Jan 2018 15:25:22 GMT", "X-GitHub-Media-Type": "github.v3; param=diff", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.130298", "X-GitHub-Request-Id": "9568:2D373:9B5187:167411F:5A6A60A3"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2018-01-25T22:56:35"}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1bbXPbuBH+Kxx9uXbOFkVSb9YkufqaNOeb2r46SptJ01FAEJIQUyRLQvKLJv+9zwKkRCqybJmafvKMHfMF+2CxwC73LcvGPA0bg8ZUqSQb2DZLZHMi1XTuN3k8s1ORxJmdycmMLWQ6z9y2bd56zeTOTuZhmNmu12kcNWTQGDidttvqtE+OGlEciBE9apy/fXd7Gf7q+O9vP3z+9Dfn86eL1vnwY+v826lz8fb6NUinahaOqmyUWNg1eT53IMfj5wM0iRxsJEzxaQ0YTU+SyLK52MDZS6waoJBrNJ/5Im0MIOWjRqaYEhAqD+NMBJgrjPk1LgZjFmbiqKGkCun9aRBYVyIULBNNlmVCZRZTKpX+HORHjXlGiEtQT2SE4f5EhphE5dvodR2v165u4j+6//x0EfJv5+758Ny7OH1NG8cWTLF0c6n6YZafIpqKx5ESkdIHam4b9F8Wr9tAmKQ5hj4rxNqu00hgmV3idvfJKQ0cx2EY34B6k9nqca9OYK+owJi5ltHkGQigWtqxmgrICkv4TguXmdqPGU2xhPplCppFGDgNaSqCvRjKacDOTQROllrDNdjcz3gqEyXjaD/GKpRAitMJi+Q92x8JlBkAtNHZa1WaApRigXO2H6khWdpJKheM35EoUsGFXECwz4DboAWauktIJT+SzkHMUokRC2akd1ppvx81/Di4w4jhVFi/f7i8sAJBO+Hj1FjMSo0aWzLi4RxvLGhREgol8GQcpzMtZgs/kpRc63rTssgAfK1agK9rE2DdwMIDO8RZsuKx9fWU6L4S4XAqMws/fCpYIlILU1g4uBZLklByM5massiasWvDYCYSlsIsgdP/wmwpayHZem4sNx0Ztv7056/NL9GX6O+CLcRDI7AqKwkZF0d0xWHArCyeiTgS1pRhgRYUSDMl1ZEFc2bNsOMkgR9WC3ISSRDzOY3RrGN+7AFPBfgNRkxB6m7LaR+3Osctd9jqDpwWfj5jzDwJNsf0jt3u0PEGnfbA02OMFd6A8YZOe9B2YK9pyEykkx9m2jJkhF2dSTXKpgw89dnYGwduf8yFx/1+0Hfbvsd7btsNeh5v99xe0OW+18cEEK2cRAInLMLHeH2fNQb//g8dZb0nYCEVCynIAm6+UILN8och80WYX89kCELIvUAOUjaGwPIvjeH3EVV7ovdg52Ba9YhLLY3HNXkfeEL7AX+3jXkKfMHo0jbfaTIfh2B+7QJo4eTc0+cf57+W1AsMu9NtcefE6XQY73sCp6nneIHf6XL89JhgzHFd3nHpkMEW4PMMf4HOR8lfGOTG6dgo+DH5GFrIYwza/s4c8D3mfvFVHnDNX3yVF1/l/++rkFE0XwRyXPB5LtuFcqg2COA9hXGysgfre2MDeoJ7gXfijXmr77qu7wgR9E/GXcfteu2+4zOv0z3ptynK2bQB5XnwmmIHt93qe63tMctZ6/zt5P68Rsxi0GvELBsc745bNgbvFbtUouVnxy9bUOrEMBshfI04poJ0uFimCluOhHC89o5nKmj7xjQV4v3jmgr5YWKbDY4qsRHE83h8Y2zGUuup13NaPcfZyBDdXIa/h/z9yT37dLXg0fX9xf27G/zeAj9iM4qf1mknPBvD1x3lLzYOF6WuKDmFUTqko3xJ7rPqkLec9yiTvtiRPOVn/IqKVF/syBNzIi92ZGsWecuRek6e5OlfzVKSGnpt8inaW4QhsX6TR9bZTzOd//BTlt6ZfAJylCnjipIaOj3y/kz9Nvd/yqyrdx+G1ukfZ5SQYEi/REgySURkFosCC/F9HMUzya0bdte0zqybOL2mdMwfd2qKP16z+3OTLBYerwzRziTnzrAzR6oVARIrFAtfi7taOES/tPFvno7kyLEyP0YuKH4sz7pzjYh4S0DLyi3F1zphUSd0NxkPhLVxfF0LSAPQh0Nn/J+SLdy98DzqLz7b65RCfWiDAF6LhFGtha9AljbpNu0KNClC0rAWbIGxtM2V3m02qYVJ9MReGPu1cOB/2BpkaSN+MSl8NarLHaESRgUU+ZParBLGClSlot7GaDYJZAV50FTUMpdoyKLJnE3q8boCwa5ThDBh94/WfXar5RoFkFTM0oW02kZujUOcmqADVbhaW1+CWYPqL18dg1mu8GgRUK66Fp85ROXYHwCWzukm9CHSsdvSvMbo52/qSDe3+tvmyCunNUWtq6+ZvfwZFeppnqFGzaZWjRrcEoS9pBzQ92azuaQkMYHrkkctjg0CoFjKpyjE1RHussAwtTJd8BwTmwGiwTBmQS1OVyAANNtYh1eDUC4l6AaLOpAaoIy4KuvUgl2jlLGjWMlxXiSsBV8BWv6SofYpjhjKWzhySnKJcww3nXbRVKzqSMggYBlIMxBiXraoxX+BsbRNoT4QSRjf1a5olWDICm9UMd3jlnfsoLZ4Muj0Bx1dftyoYrrOsdM69pxhC2XO7qDl0phknk3XJcrKkA6QaAjMai5iXKFJyORidD/HA9kX6v4AYZYVDTW4/8uabLCbDIXVaFPrnz7nYvNb9zgpWJ2iypzA90CEWBRcDJ3XhKAD1MBRSc6aMqZlyXuM63jdNrpkSj4Gj+cRSqROq4vnN9QORJ/zytPCO8E0JkKkqVk2MrrfGKh0jj4eepKk8TfBUbUsPVvbm9LDG3ktV6GlpiQXavVEh3sFE6jywULLNI3ztp28amwM7bqRKJAZ88NSZ1GciChnssDqI92OngARmSIAAkEsSne5YE15cu4yv82S4Nb0g11cnn748O5qeHZ5QQeU2n0MD+WWMd4dvg+/ff5X5/7z8PR1A6UGaH98M6K1QPMLkchspAS6IcpJPhUnklMNO88YmuOLpOAxerBwk+i4fHXhddeXvfUlVT3NSO8ElylK4fmfHIaeHPOQ8gAN1NkXMkPDRigVySCZ+5ALxptIe6CFXhJgY0CiK85HcV4CMWbzUI1M6AOYGUOTyHesfRTKCHEmCrCZCFFaXTampsT6QGVwtze7btoDNKVUtgA+rjG690+33wFFH94tMM/tegNk4Q0dDnVdSAf8Rp9B3VlWMt0xyWHm+NFLzIUFh/wwM2BPCx+a9rYI9OqC7993QEefzaGtuoEo5lK38EAx/np5Mbw6+/Xj8PIKSoYh8Ui7jIUloX6qkTnZjVfJm0P3Vb3iaG59U22uegWR4eHDLVaGSPdZ5WMP2G1V5ajScpVP1nxlJ2++RJCG6b56nOLZjVi7xLO1J4tYwz7qXVPilpqyDr1l1c16eJf0/hxwY4p5K1uCJjSzCVvfPlvuG2vcKmpSF6S4EVJR4zB6wlhGGmU+wKZXrfi26jvyAVaORCoo1qs8Wg0akXqT7xTIFN/AVeObj+/hus/4pd62pcV+S3Hkpd72Um+jXu96Pcm16/ZrHwz1+h88Jg9KDg9V4RctvpxFo1mM/0kBha+2iKI3B1YnCKTuB4e326eKHDqYzS08YY5+YuqSHVPLKYZ//x/VIdLGlTIAAA==", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:16:19 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"f72c03b1024568eec3262f551682e466fc6f45b7db74d50f51746dca0fd5b1db\""], "Last-Modified": ["Sun, 01 Aug 2021 08:10:10 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["59"], "X-RateLimit-Reset": ["1635696979"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["1"], "Accept-Ranges": ["bytes"], "Content-Length": ["2620"], "X-GitHub-Request-Id": ["AAE0:03C1:2C59D1E:7C80671:617EB343"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2021-10-31T15:16:19"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.diff"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "string": "diff --git a/github3/repos/release.py b/github3/repos/release.py\nindex 8b4f9424..10e0b774 100644\n--- a/github3/repos/release.py\n+++ b/github3/repos/release.py\n@@ -22,6 +22,8 @@ class Release(GitHubCore):\n def __init__(self, release, session=None):\n super(Release, self).__init__(release, session)\n self._api = release.get('url')\n+ #: List of :class:`Asset ` objects for this release\n+ self.assets = [Asset(i, self) for i in release.get('assets', [])]\n #: URL for uploaded assets\n self.assets_url = release.get('assets_url')\n #: Body of the release (the description)\ndiff --git a/tests/unit/test_repos_release.py b/tests/unit/test_repos_release.py\nindex c9d12f6d..d0cd4130 100644\n--- a/tests/unit/test_repos_release.py\n+++ b/tests/unit/test_repos_release.py\n@@ -15,6 +15,18 @@ class TestRelease(UnitHelper):\n example_data = {\n \"url\": releases_url(\"/1\"),\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n+ \"assets\": [{\n+ \"url\": releases_url(\"/assets/1\"),\n+ \"id\": 1,\n+ \"name\": \"example.zip\",\n+ \"label\": \"short description\",\n+ \"state\": \"uploaded\",\n+ \"content_type\": \"application/zip\",\n+ \"size\": 1024,\n+ \"download_count\": 42,\n+ \"created_at\": \"2013-02-27T19:35:32Z\",\n+ \"updated_at\": \"2013-02-27T19:35:32Z\"\n+ }],\n \"assets_url\": releases_url(\"/1/assets\"),\n \"upload_url\": releases_url(\"/1/assets{?name}\"),\n \"id\": 1,\n@@ -29,6 +41,10 @@ class TestRelease(UnitHelper):\n }\n \n # Attribute tests\n+ def test_assets(self):\n+ assert self.instance.assets is not None\n+ assert isinstance(self.instance.assets[0], Asset)\n+\n def test_has_upload_urlt(self):\n assert self.instance.upload_urlt is not None\n \n"}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:16:19 GMT"], "Content-Type": ["application/vnd.github.diff; charset=utf-8"], "Content-Length": ["1883"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["\"c839dd64e3ff65da26637551649467ca768fcde8970ed94f09695877665290b1\""], "Last-Modified": ["Sun, 01 Aug 2021 08:10:10 GMT"], "X-GitHub-Media-Type": ["github.v3; param=diff"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["58"], "X-RateLimit-Reset": ["1635696979"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["2"], "Accept-Ranges": ["bytes"], "X-GitHub-Request-Id": ["AAE0:03C1:2C59D3F:7C806D2:617EB343"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2021-10-31T15:16:19"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_files.json b/tests/cassettes/PullRequest_files.json index c81a7af9b..8dc82edeb 100644 --- a/tests/cassettes/PullRequest_files.json +++ b/tests/cassettes/PullRequest_files.json @@ -1 +1 @@ -{"recorded_with": "betamax/0.8.0", "http_interactions": [{"response": {"body": {"string": "", "encoding": "utf-8", "base64_string": "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"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235", "headers": {"Server": "GitHub.com", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Cache-Control": "public, max-age=60, s-maxage=60", "X-Frame-Options": "deny", "ETag": "W/\"06be44370df682f1efc21f803a926f7e\"", "Content-Type": "application/json; charset=utf-8", "Status": "200 OK", "X-GitHub-Request-Id": "B4A1:551B:1DADAE3:256354D:58A084F5", "X-RateLimit-Limit": "60", "X-Content-Type-Options": "nosniff", "Transfer-Encoding": "chunked", "Content-Security-Policy": "default-src 'none'", "Access-Control-Allow-Origin": "*", "Content-Encoding": "gzip", "X-RateLimit-Remaining": "59", "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Date": "Sun, 12 Feb 2017 15:53:25 GMT", "Last-Modified": "Wed, 08 Feb 2017 02:05:35 GMT", "X-RateLimit-Reset": "1486918405", "X-Served-By": "d256f86292c6dde5d09d15d926ec67a3", "Vary": "Accept", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-XSS-Protection": "1; mode=block"}}, "recorded_at": "2017-02-12T15:53:25", "request": {"body": {"string": "", "encoding": "utf-8"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235", "headers": {"Connection": "keep-alive", "User-Agent": "github3.py/1.0.0a4", "Content-Type": "application/json", "Accept-Charset": "utf-8", "Accept": "application/vnd.github.v3.full+json", "Accept-Encoding": "gzip, deflate"}}}, {"response": {"body": {"string": "", "encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA71V247bNhD9FUJ5WBvRWqIutmVkk2z70DwEfQgSFKhtKBRJrVjIoiBSSTYL/3uHlOTb2tgtmsQwZIucyxnyzJnlg6MK4iwc7HM/m80iFueY8yTElASzyMfzDE8DTpLIpzENYuq4Ti5KXpENB687oYs2C72G11LBs+RE8Ul9D1ZKE90qsNlIJnLBGawRxoQWsoLlwHUYmPdvvuvQglR3vNvJSpmlbVOCd6F1rRae12WaULnxlLjbkC+iaVUQ9esh5PSMlxdPfYoTHMeEzkOehfMZDlkWTyl8Z4QTgoOAxsF8cDwHvSFf/3t2cPohyamsNK+0OkFAajE5OIPuwC+dxBDjYpFvGp7fPPeo4OJqomkBt/H2LboOAneKXsJzjuCVlkQp9KG7+dEfQr9rs99lw8eLVYXMh/EcpamohE7TkeJl7qKeJy5SXCmgw82fsto7GCfV1rwZ9VGNXZmPJ7sop/7jPpX1BNNJCqeFboY8kzuuR1dApyswfGlBwefFAr0XSiOZo4UtYvH5Vimu0Sv78/ozktk/nGqFctkgXQg1xDsIYrOBLwezG7S0niPRA7aOAonqGEhnfuWi5Xq8PkAOgD59eG+d2rqUhHGGOtvT8rpVQ5DTIvc7ptahVFPrb5Ldm1p1wQc4aGReGFe0EbVpxLGzdQc9YD5lEQ79OOJJTrKY+lOS8ZxOMx9HcZJECYlBE2bHeqC50spr4bI98ze1NIXn83UBTy8Kg9n6FcrwjCJ+vkI8A8QPVYqn8v0fxcCxUQx44gPJ+Aj8GGTjExDmHS+h53eywb+RTV3ylBFNgOUPB2xeOcD8lbMYeGylcrRyPLxyxu6RYaE3pdk11qtzs0RSLSnRHmQv5fVfsinZMMaU9wVP/Im/ciDmTjZWTt+TEHEJqHYbptkuIut8BoAnPoIZePgwSxfMDNkOeX8ak++iPobTGZbQmn2NqpCNPmzqc/ZmNveRB6k5Z9YTLNX3dW9N6roUcF4gFt4FLEp8t8bYD6LHJTH5tTLallLZVtrYRcFjK9pwAMhSYi1WTuDj8NoProPZR5wswngRBn+fA9zWQJcn/U4ubbs+5sxeQ89yzBvu/4Rq3UEOZOslb0/N3u3hjbnU7SOi7jlgR2xiGibCLvb3M/aJhjFM2AL5e/6/QLdaNyJrNUe2t/uqzTi20tyVYSeyabodJ806MMhONlEBUyrKhxEHM7CSGplx/dhDqMHcBj11XvprF92aAWmmcI9yh6YgcFR26pkT1DtYuxF2FtaBBzrChpzt+l+mz/442woAAA=="}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235/files?per_page=100", "headers": {"Server": "GitHub.com", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Cache-Control": "public, max-age=60, s-maxage=60", "X-Frame-Options": "deny", "ETag": "W/\"8d7256aba181c83e7fb5a60ba68ee1b6\"", "Content-Type": "application/json; charset=utf-8", "Status": "200 OK", "X-GitHub-Request-Id": "B4A1:551B:1DADAEB:2563557:58A084F5", "X-RateLimit-Limit": "60", "X-Content-Type-Options": "nosniff", "Transfer-Encoding": "chunked", "Content-Security-Policy": "default-src 'none'", "Access-Control-Allow-Origin": "*", "Content-Encoding": "gzip", "X-RateLimit-Remaining": "58", "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Date": "Sun, 12 Feb 2017 15:53:25 GMT", "Last-Modified": "Wed, 08 Feb 2017 02:05:35 GMT", "X-RateLimit-Reset": "1486918405", "X-Served-By": "d594a23ec74671eba905bf91ef329026", "Vary": "Accept", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-XSS-Protection": "1; mode=block"}}, "recorded_at": "2017-02-12T15:53:25", "request": {"body": {"string": "", "encoding": "utf-8"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235/files?per_page=100", "headers": {"Connection": "keep-alive", "User-Agent": "github3.py/1.0.0a4", "Content-Type": "application/json", "Accept-Charset": "utf-8", "Accept": "application/vnd.github.v3.full+json", "Accept-Encoding": "gzip, deflate"}}}]} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1bbXPbuBH+Kxx9uXbOFkVSb9YkufqaNOeb2r46SptJ01FAEJIQUyRLQvKLJv+9zwKkRCqybJmafvKMHfMF+2CxwC73LcvGPA0bg8ZUqSQb2DZLZHMi1XTuN3k8s1ORxJmdycmMLWQ6z9y2bd56zeTOTuZhmNmu12kcNWTQGDidttvqtE+OGlEciBE9apy/fXd7Gf7q+O9vP3z+9Dfn86eL1vnwY+v826lz8fb6NUinahaOqmyUWNg1eT53IMfj5wM0iRxsJEzxaQ0YTU+SyLK52MDZS6waoJBrNJ/5Im0MIOWjRqaYEhAqD+NMBJgrjPk1LgZjFmbiqKGkCun9aRBYVyIULBNNlmVCZRZTKpX+HORHjXlGiEtQT2SE4f5EhphE5dvodR2v165u4j+6//x0EfJv5+758Ny7OH1NG8cWTLF0c6n6YZafIpqKx5ESkdIHam4b9F8Wr9tAmKQ5hj4rxNqu00hgmV3idvfJKQ0cx2EY34B6k9nqca9OYK+owJi5ltHkGQigWtqxmgrICkv4TguXmdqPGU2xhPplCppFGDgNaSqCvRjKacDOTQROllrDNdjcz3gqEyXjaD/GKpRAitMJi+Q92x8JlBkAtNHZa1WaApRigXO2H6khWdpJKheM35EoUsGFXECwz4DboAWauktIJT+SzkHMUokRC2akd1ppvx81/Di4w4jhVFi/f7i8sAJBO+Hj1FjMSo0aWzLi4RxvLGhREgol8GQcpzMtZgs/kpRc63rTssgAfK1agK9rE2DdwMIDO8RZsuKx9fWU6L4S4XAqMws/fCpYIlILU1g4uBZLklByM5massiasWvDYCYSlsIsgdP/wmwpayHZem4sNx0Ztv7056/NL9GX6O+CLcRDI7AqKwkZF0d0xWHArCyeiTgS1pRhgRYUSDMl1ZEFc2bNsOMkgR9WC3ISSRDzOY3RrGN+7AFPBfgNRkxB6m7LaR+3Osctd9jqDpwWfj5jzDwJNsf0jt3u0PEGnfbA02OMFd6A8YZOe9B2YK9pyEykkx9m2jJkhF2dSTXKpgw89dnYGwduf8yFx/1+0Hfbvsd7btsNeh5v99xe0OW+18cEEK2cRAInLMLHeH2fNQb//g8dZb0nYCEVCynIAm6+UILN8och80WYX89kCELIvUAOUjaGwPIvjeH3EVV7ovdg52Ba9YhLLY3HNXkfeEL7AX+3jXkKfMHo0jbfaTIfh2B+7QJo4eTc0+cf57+W1AsMu9NtcefE6XQY73sCp6nneIHf6XL89JhgzHFd3nHpkMEW4PMMf4HOR8lfGOTG6dgo+DH5GFrIYwza/s4c8D3mfvFVHnDNX3yVF1/l/++rkFE0XwRyXPB5LtuFcqg2COA9hXGysgfre2MDeoJ7gXfijXmr77qu7wgR9E/GXcfteu2+4zOv0z3ptynK2bQB5XnwmmIHt93qe63tMctZ6/zt5P68Rsxi0GvELBsc745bNgbvFbtUouVnxy9bUOrEMBshfI04poJ0uFimCluOhHC89o5nKmj7xjQV4v3jmgr5YWKbDY4qsRHE83h8Y2zGUuup13NaPcfZyBDdXIa/h/z9yT37dLXg0fX9xf27G/zeAj9iM4qf1mknPBvD1x3lLzYOF6WuKDmFUTqko3xJ7rPqkLec9yiTvtiRPOVn/IqKVF/syBNzIi92ZGsWecuRek6e5OlfzVKSGnpt8inaW4QhsX6TR9bZTzOd//BTlt6ZfAJylCnjipIaOj3y/kz9Nvd/yqyrdx+G1ukfZ5SQYEi/REgySURkFosCC/F9HMUzya0bdte0zqybOL2mdMwfd2qKP16z+3OTLBYerwzRziTnzrAzR6oVARIrFAtfi7taOES/tPFvno7kyLEyP0YuKH4sz7pzjYh4S0DLyi3F1zphUSd0NxkPhLVxfF0LSAPQh0Nn/J+SLdy98DzqLz7b65RCfWiDAF6LhFGtha9AljbpNu0KNClC0rAWbIGxtM2V3m02qYVJ9MReGPu1cOB/2BpkaSN+MSl8NarLHaESRgUU+ZParBLGClSlot7GaDYJZAV50FTUMpdoyKLJnE3q8boCwa5ThDBh94/WfXar5RoFkFTM0oW02kZujUOcmqADVbhaW1+CWYPqL18dg1mu8GgRUK66Fp85ROXYHwCWzukm9CHSsdvSvMbo52/qSDe3+tvmyCunNUWtq6+ZvfwZFeppnqFGzaZWjRrcEoS9pBzQ92azuaQkMYHrkkctjg0CoFjKpyjE1RHussAwtTJd8BwTmwGiwTBmQS1OVyAANNtYh1eDUC4l6AaLOpAaoIy4KuvUgl2jlLGjWMlxXiSsBV8BWv6SofYpjhjKWzhySnKJcww3nXbRVKzqSMggYBlIMxBiXraoxX+BsbRNoT4QSRjf1a5olWDICm9UMd3jlnfsoLZ4Muj0Bx1dftyoYrrOsdM69pxhC2XO7qDl0phknk3XJcrKkA6QaAjMai5iXKFJyORidD/HA9kX6v4AYZYVDTW4/8uabLCbDIXVaFPrnz7nYvNb9zgpWJ2iypzA90CEWBRcDJ3XhKAD1MBRSc6aMqZlyXuM63jdNrpkSj4Gj+cRSqROq4vnN9QORJ/zytPCO8E0JkKkqVk2MrrfGKh0jj4eepKk8TfBUbUsPVvbm9LDG3ktV6GlpiQXavVEh3sFE6jywULLNI3ztp28amwM7bqRKJAZ88NSZ1GciChnssDqI92OngARmSIAAkEsSne5YE15cu4yv82S4Nb0g11cnn748O5qeHZ5QQeU2n0MD+WWMd4dvg+/ff5X5/7z8PR1A6UGaH98M6K1QPMLkchspAS6IcpJPhUnklMNO88YmuOLpOAxerBwk+i4fHXhddeXvfUlVT3NSO8ElylK4fmfHIaeHPOQ8gAN1NkXMkPDRigVySCZ+5ALxptIe6CFXhJgY0CiK85HcV4CMWbzUI1M6AOYGUOTyHesfRTKCHEmCrCZCFFaXTampsT6QGVwtze7btoDNKVUtgA+rjG690+33wFFH94tMM/tegNk4Q0dDnVdSAf8Rp9B3VlWMt0xyWHm+NFLzIUFh/wwM2BPCx+a9rYI9OqC7993QEefzaGtuoEo5lK38EAx/np5Mbw6+/Xj8PIKSoYh8Ui7jIUloX6qkTnZjVfJm0P3Vb3iaG59U22uegWR4eHDLVaGSPdZ5WMP2G1V5ajScpVP1nxlJ2++RJCG6b56nOLZjVi7xLO1J4tYwz7qXVPilpqyDr1l1c16eJf0/hxwY4p5K1uCJjSzCVvfPlvuG2vcKmpSF6S4EVJR4zB6wlhGGmU+wKZXrfi26jvyAVaORCoo1qs8Wg0akXqT7xTIFN/AVeObj+/hus/4pd62pcV+S3Hkpd72Um+jXu96Pcm16/ZrHwz1+h88Jg9KDg9V4RctvpxFo1mM/0kBha+2iKI3B1YnCKTuB4e326eKHDqYzS08YY5+YuqSHVPLKYZ//x/VIdLGlTIAAA==", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:27:51 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"f72c03b1024568eec3262f551682e466fc6f45b7db74d50f51746dca0fd5b1db\""], "Last-Modified": ["Sun, 01 Aug 2021 08:10:10 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["51"], "X-RateLimit-Reset": ["1635696978"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["9"], "Accept-Ranges": ["bytes"], "Transfer-Encoding": ["chunked"], "X-GitHub-Request-Id": ["E138:7934:108A290:1E67D53:617EB5F6"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2021-10-31T15:27:51"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235/files?per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA71V247bNhD9FUJ5WBvRWqIutmVkk2z70DwEfQgSFKhtKBRJrVjIoiBSSTYL/3uHlOTb2tgtmsQwZIucyxnyzJnlg6MK4iwc7HM/m80iFueY8yTElASzyMfzDE8DTpLIpzENYuq4Ti5KXpENB687oYs2C72G11LBs+RE8Ul9D1ZKE90qsNlIJnLBGawRxoQWsoLlwHUYmPdvvuvQglR3vNvJSpmlbVOCd6F1rRae12WaULnxlLjbkC+iaVUQ9esh5PSMlxdPfYoTHMeEzkOehfMZDlkWTyl8Z4QTgoOAxsF8cDwHvSFf/3t2cPohyamsNK+0OkFAajE5OIPuwC+dxBDjYpFvGp7fPPeo4OJqomkBt/H2LboOAneKXsJzjuCVlkQp9KG7+dEfQr9rs99lw8eLVYXMh/EcpamohE7TkeJl7qKeJy5SXCmgw82fsto7GCfV1rwZ9VGNXZmPJ7sop/7jPpX1BNNJCqeFboY8kzuuR1dApyswfGlBwefFAr0XSiOZo4UtYvH5Vimu0Sv78/ozktk/nGqFctkgXQg1xDsIYrOBLwezG7S0niPRA7aOAonqGEhnfuWi5Xq8PkAOgD59eG+d2rqUhHGGOtvT8rpVQ5DTIvc7ptahVFPrb5Ldm1p1wQc4aGReGFe0EbVpxLGzdQc9YD5lEQ79OOJJTrKY+lOS8ZxOMx9HcZJECYlBE2bHeqC50spr4bI98ze1NIXn83UBTy8Kg9n6FcrwjCJ+vkI8A8QPVYqn8v0fxcCxUQx44gPJ+Aj8GGTjExDmHS+h53eywb+RTV3ylBFNgOUPB2xeOcD8lbMYeGylcrRyPLxyxu6RYaE3pdk11qtzs0RSLSnRHmQv5fVfsinZMMaU9wVP/Im/ciDmTjZWTt+TEHEJqHYbptkuIut8BoAnPoIZePgwSxfMDNkOeX8ak++iPobTGZbQmn2NqpCNPmzqc/ZmNveRB6k5Z9YTLNX3dW9N6roUcF4gFt4FLEp8t8bYD6LHJTH5tTLallLZVtrYRcFjK9pwAMhSYi1WTuDj8NoProPZR5wswngRBn+fA9zWQJcn/U4ubbs+5sxeQ89yzBvu/4Rq3UEOZOslb0/N3u3hjbnU7SOi7jlgR2xiGibCLvb3M/aJhjFM2AL5e/6/QLdaNyJrNUe2t/uqzTi20tyVYSeyabodJ806MMhONlEBUyrKhxEHM7CSGplx/dhDqMHcBj11XvprF92aAWmmcI9yh6YgcFR26pkT1DtYuxF2FtaBBzrChpzt+l+mz/442woAAA==", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:27:51 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"f9f8a6eaf658b16007893005a3396f9d5389cf9b6eb26f01f27f1f9b4388c9ca\""], "Last-Modified": ["Sun, 01 Aug 2021 08:10:10 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["50"], "X-RateLimit-Reset": ["1635696979"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["10"], "Accept-Ranges": ["bytes"], "Content-Length": ["973"], "X-GitHub-Request-Id": ["E138:7934:108A2B8:1E67D8A:617EB5F7"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235/files?per_page=100"}, "recorded_at": "2021-10-31T15:27:51"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_is_merged.json b/tests/cassettes/PullRequest_is_merged.json index 61bfd205d..d7227be03 100644 --- a/tests/cassettes/PullRequest_is_merged.json +++ b/tests/cassettes/PullRequest_is_merged.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Thu, 25 Jan 2018 23:04:02 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "57", "X-RateLimit-Reset": "1516924595", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"6a40ed61fa463a6dbe2bdd37dd9ae9f7\"", "Last-Modified": "Wed, 24 Jan 2018 15:25:22 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.073013", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "B552:2D373:9B96A1:167E22F:5A6A6262"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2018-01-25T23:04:02"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235/merge"}, "response": {"body": {"encoding": null, "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Thu, 25 Jan 2018 23:04:02 GMT", "Content-Type": "application/octet-stream", "Status": "204 No Content", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "56", "X-RateLimit-Reset": "1516924595", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.027009", "X-GitHub-Request-Id": "B552:2D373:9B96A6:167E23B:5A6A6262"}, "status": {"code": 204, "message": "No Content"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235/merge"}, "recorded_at": "2018-01-25T23:04:02"}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:17:02 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"f72c03b1024568eec3262f551682e466fc6f45b7db74d50f51746dca0fd5b1db\""], "Last-Modified": ["Sun, 01 Aug 2021 08:10:10 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["57"], "X-RateLimit-Reset": ["1635696978"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["3"], "Accept-Ranges": ["bytes"], "Content-Length": ["2620"], "X-GitHub-Request-Id": ["AAE2:422B:25D4FAC:4D65F42:617EB36D"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2021-10-31T15:17:02"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235/merge"}, "response": {"body": {"encoding": null, "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:17:02 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Vary": ["Accept-Encoding, Accept, X-Requested-With"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["56"], "X-RateLimit-Reset": ["1635696979"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["4"], "X-GitHub-Request-Id": ["AAE2:422B:25D4FD9:4D65F9B:617EB36E"]}, "status": {"code": 204, "message": "No Content"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235/merge"}, "recorded_at": "2021-10-31T15:17:02"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_issue.json b/tests/cassettes/PullRequest_issue.json index 365690c15..420b07a3c 100644 --- a/tests/cassettes/PullRequest_issue.json +++ b/tests/cassettes/PullRequest_issue.json @@ -1 +1 @@ -{"recorded_with": "betamax/0.8.0", "http_interactions": [{"response": {"url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235", "body": {"encoding": "utf-8", "string": "", "base64_string": "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"}, "headers": {"X-GitHub-Request-Id": "B2DC:551F:331BE39:407966B:58A08A5F", "X-RateLimit-Limit": "60", "Status": "200 OK", "X-Frame-Options": "deny", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "Server": "GitHub.com", "Content-Type": "application/json; charset=utf-8", "X-XSS-Protection": "1; mode=block", "X-Served-By": "593010132f82159af0ded24b4932e109", "X-Content-Type-Options": "nosniff", "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "X-RateLimit-Reset": "1486918405", "Vary": "Accept", "Access-Control-Allow-Origin": "*", "Cache-Control": "public, max-age=60, s-maxage=60", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "ETag": "W/\"06be44370df682f1efc21f803a926f7e\"", "Date": "Sun, 12 Feb 2017 16:16:31 GMT", "X-RateLimit-Remaining": "56", "Last-Modified": "Wed, 08 Feb 2017 02:05:35 GMT", "Content-Security-Policy": "default-src 'none'", "Content-Encoding": "gzip", "Transfer-Encoding": "chunked"}, "status": {"message": "OK", "code": 200}}, "request": {"uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235", "body": {"encoding": "utf-8", "string": ""}, "headers": {"Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0a4", "Content-Type": "application/json", "Accept-Charset": "utf-8", "Connection": "keep-alive", "Accept-Encoding": "gzip, deflate"}, "method": "GET"}, "recorded_at": "2017-02-12T16:16:31"}, {"response": {"url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/235", "body": {"encoding": "utf-8", "string": "", "base64_string": "H4sIAAAAAAAAA7VWXW/bNhT9K4SeOsCxbMtJNiHL0Nei2IDVfWkz2JR0bRGlRI2knLpG/nsPKTuxtMSJPwb4QZbuOffyXN6PdVBrGcRBbm1l4jDklegvhM3rpJ+qItRUKRMasSj4UujajMZh8zXqV6tQGFOTCUfRZdALvKmwSq+mx1OCR/KEpDmBYyessCFbhyUv6AHkOFNBpT0X/ZYOzLQ8I29DBtbcFrIjxU52XspLVUu5yYrIgjgaXV0Pot9GvaCsi4R0ECNjvcAKKwmpf59l7G+SxA31uTFkDePWapHUlhBCbRxiHUi1ECXMk4WQILH45MmvhtH1uBfwJbdcd9PmX5rNjXJMqSothPKXqw4b8B/L3yOwLfSGw9EGzvO+m+nITLgTzH6pdgznSkp1D3Q32PbVbzsIH1EIrHkW5eIIBqDWobI5QSscwV3KhTCv3chOMB6xRikaOxWZ4zDQWVN2UEAbDMK5LxHJ2le7J6sTk2pRWaHKw1RqIcGk9IKX4gc/nAlIAwLfVQ46lUcA+ZaC7MjaQNZhpcWSpysnhaaUxBLCHkHXwYLNripXcZ9dSUFmYWnKs8KV1ZxLQw/b7hfEX//xOUUFxkEqlaEMAKnSb3hojFFyBg2gJJiUKPin/6aBF0KSsap8/P7YreIhOqEmsGdTbuFhNBiOLwaXF4PRZHAVDwf4fYG/usq6NtcXo6vJMIovx3HkbZrgOjTRZDiOx0P0GWfi2tFU07+YFXC23l/X+yeOo9oOnP0F/4bemIn5/Pjm2ndwdzpu0/wEGo8PkPpEZaupOxQSclPdTnJiHz799SfLyBVjgsbBONNNo2aiTGWNLwxJrSRZwpu50oWvNIafcG3cd/M+Y67F36Qqo9t2o78J/cunfs/uMfvhRqKzMDXfgN47no2to5vkwjD80px4RZrBMUNHY7yqpEibEGzOS1bwb03YhiqucZcQv78GbCl4JyIUg542Eb/7ZeOsfxNWt3cl1PhIfElvQEAGVkmeUs89pZhpzKiCUAUs51CEoeR9vML2GCYcc+uAk2yfPGBycmYqrZ25P6APDen3WbP03ZXRuVP20lTuZsnn54yJ2fptpaR/VzZJePbr0bp3zvis1BuZ/weFZ233s5crYeZFnp1R5UffLZln0Hmr9AsWR2v9n9M+q/Zd+dTWk9Xu6rfbU2Hj9rTRePBrNDhy/WvAJ6x/nYDePhEQ/UFrYGuaHL0KPsNyyjrYGXEnrIQtpvOthW3a3aUS+h+8GrbYDl0PW+DDV8QW/DxrYiei1poJeV5bFR9+AouCGum6DwAA"}, "headers": {"X-GitHub-Request-Id": "B2DC:551F:331BE49:407967D:58A08A5F", "X-RateLimit-Limit": "60", "Status": "200 OK", "X-Frame-Options": "deny", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "Server": "GitHub.com", "Content-Type": "application/json; charset=utf-8", "X-XSS-Protection": "1; mode=block", "X-Served-By": "8166eb1845e56d99ba68a6b1065016c1", "X-Content-Type-Options": "nosniff", "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "X-RateLimit-Reset": "1486918405", "Vary": "Accept", "Access-Control-Allow-Origin": "*", "Cache-Control": "public, max-age=60, s-maxage=60", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "ETag": "W/\"727417ff8268f265e3da0c3ad359a72d\"", "Date": "Sun, 12 Feb 2017 16:16:31 GMT", "X-RateLimit-Remaining": "55", "Last-Modified": "Wed, 08 Feb 2017 02:05:35 GMT", "Content-Security-Policy": "default-src 'none'", "Content-Encoding": "gzip", "Transfer-Encoding": "chunked"}, "status": {"message": "OK", "code": 200}}, "request": {"uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/235", "body": {"encoding": "utf-8", "string": ""}, "headers": {"Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0a4", "Content-Type": "application/json", "Accept-Charset": "utf-8", "Connection": "keep-alive", "Accept-Encoding": "gzip, deflate"}, "method": "GET"}, "recorded_at": "2017-02-12T16:16:31"}]} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:28:10 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"f72c03b1024568eec3262f551682e466fc6f45b7db74d50f51746dca0fd5b1db\""], "Last-Modified": ["Sun, 01 Aug 2021 08:10:10 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["49"], "X-RateLimit-Reset": ["1635696979"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["11"], "Accept-Ranges": ["bytes"], "Content-Length": ["2620"], "X-GitHub-Request-Id": ["8D5C:0E4C:1632D44:2A31339:617EB60A"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2021-10-31T15:28:10"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/235"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA7VYf0/rNhT9Klb+2jRokrbAFgETb2zTm9ai8cqEGFNwE7fxw4mz2Cn0VXz3HTstNBn00R+TItU49x5fn2vfe8LMKQvhBE6ida4C16U5b425TsphK5KpW7BcKlfxcUonvChVu+tWbzutfOpypUqm3HbnwNlzrCnXspiGm0MCR9AhE2oLjKWw3Aps5mY0ZU8Ax55SluldwS/ggMwmO8StwICa6FQ0qFjKzlt5yUsh5lnhsRN02odHXueH9p6TyZiFZsrpnf/8eCE++MNfHz/dXP/i31z3vd7gyut9PvP75/cnWDsr0yErnADp3XM014LB7yyOySUTjCrWokoxrQjVuuDDUjP4lMp4zBwhxzyD+XDMBUA0XtlIDv3OUbcexx+Hf173RfS51+4Nep3+2YlZm06opkXzENhJNT+fZqlIZhq026NauhX6j5OTLhDGxRzDbteEtuqcGzDlLkW7mvglw5EUQj7Auxls/SLVF3CfvRBYNebZeAMEeM1cqRMGrrAFc8THXH3tfDeCsR4zXGylcTgMhgLPBYvXCmjug3AeMkQys7XDgpVDFRU811xm67FU8wSSLMY041/o+kjwVACwNWqtXVkPeL7nejdorVxmbl7wCY2mhoqCRYxPQOwGcA1foOlpbq7klblzoJlrFtI4NfduRIViT4ta6gR//W1ziisaOJGQisVwEDK6x6AyxpVTKCcZg0mG8vHyt6rcUy6Y0jJ7fv9c+wIfdbVgQI9DqrFC2/O7+97BvtceeIeB7+G5wXplHjdtjvbbhwO/Exx0g461qYJrwHQGfjfo+ihExoSWOpFFiHBlxO1RwJI/XfQHlx8/XA0uLo1JpMFyaDYYIjBlTKpNmcqIqX/QthDpbHVRWN38DNSi962uFu8o0zEfjTav8y3jjn3nVEfJFjDW38G5Gcp4GppNgdrj/HSQMPLbp4s+iZm5yUNUHUJJUbUBwrNIlHhDcCJywTTDzEgWqc0NwcNNk7C9okWIaSDHEfrQab2NHLt28qWbkAfIECwjUJaIHM2dzgzO3NbADRKuCJ4oYTRnBcHCBOWQ0DwXPKpC0AnNSErvq7AVy2mBg4j47TEgE04bEeEm2QOGiL/5dr5Y69jNT28zsPE7oxP2Dg/QQHJBI7ZnRhE6JlEyZbhCJKFghKBe2Hi53iPon8QoE0PZKnqAZOiMZVQac7tBGxrSb7Om2aO5g7tO2Vs9v5klm58dJmaxbi0lrdusSsKrbzfmvbHHV6me0/w/MHxXX/7u7ZtwZ0m+2yHLz2vXaL4Dzwum37DYmOv/7PZVtm+zl54wnC4Ly+WaChsj8tpd7/uO97q4/Oj1zsdfeluIywp9C3HZiPj9LQPbW0tk1trNxkLzFZRtxGajB24hOGtIuxOdddhlyQr+1xaeNbR1xWfNeX0BWnPfjQhtRFQTsaDn60IUKgyaDPp/S9HFn//jgM+LBSQCkJqKMJJlht6HEvCdb3/2qx9By3FiJxIpC4o6giE+HUdowKgbZp5RfKOaUWFEcTVkU4ZwPcghzVMmeMZWfzmslotLkS/gjGJjhZFKUM5QIWH1aR9Cu1R69elffinr4p4RAAA=", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:28:10 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"98e6312e8a5aaf40f30c8b24a9a0951c00b6869e101f674b55868832769a631f\""], "Last-Modified": ["Sun, 01 Aug 2021 08:10:10 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["48"], "X-RateLimit-Reset": ["1635696979"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["12"], "Accept-Ranges": ["bytes"], "Content-Length": ["1199"], "X-GitHub-Request-Id": ["8D5C:0E4C:1632D5E:2A31370:617EB60A"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/235"}, "recorded_at": "2021-10-31T15:28:10"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_issue_comments.json b/tests/cassettes/PullRequest_issue_comments.json index 27b2fc400..42102f413 100644 --- a/tests/cassettes/PullRequest_issue_comments.json +++ b/tests/cassettes/PullRequest_issue_comments.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Sun, 25 Feb 2018 13:34:21 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "59", "X-RateLimit-Reset": "1519569261", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"75edbcd693a7fa0ee4905f1d781a0ba5\"", "Last-Modified": "Wed, 24 Jan 2018 15:25:22 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.084071", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C0BE:328F:7E886A:18284A1:5A92BB5D"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2018-02-25T13:34:21"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/235/comments?per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA52UW4/TMBCF/0plXts6ty4o6hZeeAUJLUKCriIncRMLx7Z8yVKi/nfGblq15ab01Z7zzfGxx98G5DRHOWqtVSbHmCi2bJhtXbmsZIc1VdJgw5qO9Ew7k2T4uJsu1R4zYxw1GAo7KqzBWRJHD6uHGM2B1/HiGn2B/RtQOc5xkq5eBfLIXVxgw/oN9x7L0ANMshrlJ/gcOUM1ygfEZcMERHJpcixOsuhNGs0R6Ykl+tZHWDTpmJ/HVVJYSCZE6fBR/bZ/zADX6BHiTSBY+Oc9eNj1PUzKGIp3knP5ApRb19cX/nsjfFaeKUw0d1JAOWBpWwrhwZEOPghm7HRTQTXAYzS2YLXnGAhf03qysVEHtl4EOBrCmw9AV5pKM2WZFNMNXqmBJnVDBPtJ7qOB2gAkjOPkEwYVqGnvp3Sy/CgbsNKsJ9XeR6NpRVkPYd+JvNED0e4VhTn47GcQomeWFqTu/BzuCDf0MEeVpsRCS2KhLonibBGtFlH6FGd5FufJ66+gc6r+bw1xtpW6IMbIioXrAN7HLx/efwJAKet94f8uWFurzVNLxHczW5NZq+nucXv+Ji/+srJhvKTabtGs4kCFKv+0F/5LBPgWbd6dStaYbNZYbU6NLP3hDzN2OZeN23/YmW0FOjz/AgDS1fO1BQAA", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Sun, 25 Feb 2018 13:34:21 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "58", "X-RateLimit-Reset": "1519569261", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"4f8c896a6a5b52c1010091704ab11eb9\"", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.064447", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C0BE:328F:7E8873:18284B4:5A92BB5D"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/235/comments?per_page=100"}, "recorded_at": "2018-02-25T13:34:21"}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1bbXPbuBH+Kxx9uXbOFkVSb9YkufqaNOeb2r46SptJ01FAEJIQUyRLQvKLJv+9zwKkRCqybJmafvKMHfMF+2CxwC73LcvGPA0bg8ZUqSQb2DZLZHMi1XTuN3k8s1ORxJmdycmMLWQ6z9y2bd56zeTOTuZhmNmu12kcNWTQGDidttvqtE+OGlEciBE9apy/fXd7Gf7q+O9vP3z+9Dfn86eL1vnwY+v826lz8fb6NUinahaOqmyUWNg1eT53IMfj5wM0iRxsJEzxaQ0YTU+SyLK52MDZS6waoJBrNJ/5Im0MIOWjRqaYEhAqD+NMBJgrjPk1LgZjFmbiqKGkCun9aRBYVyIULBNNlmVCZRZTKpX+HORHjXlGiEtQT2SE4f5EhphE5dvodR2v165u4j+6//x0EfJv5+758Ny7OH1NG8cWTLF0c6n6YZafIpqKx5ESkdIHam4b9F8Wr9tAmKQ5hj4rxNqu00hgmV3idvfJKQ0cx2EY34B6k9nqca9OYK+owJi5ltHkGQigWtqxmgrICkv4TguXmdqPGU2xhPplCppFGDgNaSqCvRjKacDOTQROllrDNdjcz3gqEyXjaD/GKpRAitMJi+Q92x8JlBkAtNHZa1WaApRigXO2H6khWdpJKheM35EoUsGFXECwz4DboAWauktIJT+SzkHMUokRC2akd1ppvx81/Di4w4jhVFi/f7i8sAJBO+Hj1FjMSo0aWzLi4RxvLGhREgol8GQcpzMtZgs/kpRc63rTssgAfK1agK9rE2DdwMIDO8RZsuKx9fWU6L4S4XAqMws/fCpYIlILU1g4uBZLklByM5massiasWvDYCYSlsIsgdP/wmwpayHZem4sNx0Ztv7056/NL9GX6O+CLcRDI7AqKwkZF0d0xWHArCyeiTgS1pRhgRYUSDMl1ZEFc2bNsOMkgR9WC3ISSRDzOY3RrGN+7AFPBfgNRkxB6m7LaR+3Osctd9jqDpwWfj5jzDwJNsf0jt3u0PEGnfbA02OMFd6A8YZOe9B2YK9pyEykkx9m2jJkhF2dSTXKpgw89dnYGwduf8yFx/1+0Hfbvsd7btsNeh5v99xe0OW+18cEEK2cRAInLMLHeH2fNQb//g8dZb0nYCEVCynIAm6+UILN8och80WYX89kCELIvUAOUjaGwPIvjeH3EVV7ovdg52Ba9YhLLY3HNXkfeEL7AX+3jXkKfMHo0jbfaTIfh2B+7QJo4eTc0+cf57+W1AsMu9NtcefE6XQY73sCp6nneIHf6XL89JhgzHFd3nHpkMEW4PMMf4HOR8lfGOTG6dgo+DH5GFrIYwza/s4c8D3mfvFVHnDNX3yVF1/l/++rkFE0XwRyXPB5LtuFcqg2COA9hXGysgfre2MDeoJ7gXfijXmr77qu7wgR9E/GXcfteu2+4zOv0z3ptynK2bQB5XnwmmIHt93qe63tMctZ6/zt5P68Rsxi0GvELBsc745bNgbvFbtUouVnxy9bUOrEMBshfI04poJ0uFimCluOhHC89o5nKmj7xjQV4v3jmgr5YWKbDY4qsRHE83h8Y2zGUuup13NaPcfZyBDdXIa/h/z9yT37dLXg0fX9xf27G/zeAj9iM4qf1mknPBvD1x3lLzYOF6WuKDmFUTqko3xJ7rPqkLec9yiTvtiRPOVn/IqKVF/syBNzIi92ZGsWecuRek6e5OlfzVKSGnpt8inaW4QhsX6TR9bZTzOd//BTlt6ZfAJylCnjipIaOj3y/kz9Nvd/yqyrdx+G1ukfZ5SQYEi/REgySURkFosCC/F9HMUzya0bdte0zqybOL2mdMwfd2qKP16z+3OTLBYerwzRziTnzrAzR6oVARIrFAtfi7taOES/tPFvno7kyLEyP0YuKH4sz7pzjYh4S0DLyi3F1zphUSd0NxkPhLVxfF0LSAPQh0Nn/J+SLdy98DzqLz7b65RCfWiDAF6LhFGtha9AljbpNu0KNClC0rAWbIGxtM2V3m02qYVJ9MReGPu1cOB/2BpkaSN+MSl8NarLHaESRgUU+ZParBLGClSlot7GaDYJZAV50FTUMpdoyKLJnE3q8boCwa5ThDBh94/WfXar5RoFkFTM0oW02kZujUOcmqADVbhaW1+CWYPqL18dg1mu8GgRUK66Fp85ROXYHwCWzukm9CHSsdvSvMbo52/qSDe3+tvmyCunNUWtq6+ZvfwZFeppnqFGzaZWjRrcEoS9pBzQ92azuaQkMYHrkkctjg0CoFjKpyjE1RHussAwtTJd8BwTmwGiwTBmQS1OVyAANNtYh1eDUC4l6AaLOpAaoIy4KuvUgl2jlLGjWMlxXiSsBV8BWv6SofYpjhjKWzhySnKJcww3nXbRVKzqSMggYBlIMxBiXraoxX+BsbRNoT4QSRjf1a5olWDICm9UMd3jlnfsoLZ4Muj0Bx1dftyoYrrOsdM69pxhC2XO7qDl0phknk3XJcrKkA6QaAjMai5iXKFJyORidD/HA9kX6v4AYZYVDTW4/8uabLCbDIXVaFPrnz7nYvNb9zgpWJ2iypzA90CEWBRcDJ3XhKAD1MBRSc6aMqZlyXuM63jdNrpkSj4Gj+cRSqROq4vnN9QORJ/zytPCO8E0JkKkqVk2MrrfGKh0jj4eepKk8TfBUbUsPVvbm9LDG3ktV6GlpiQXavVEh3sFE6jywULLNI3ztp28amwM7bqRKJAZ88NSZ1GciChnssDqI92OngARmSIAAkEsSne5YE15cu4yv82S4Nb0g11cnn748O5qeHZ5QQeU2n0MD+WWMd4dvg+/ff5X5/7z8PR1A6UGaH98M6K1QPMLkchspAS6IcpJPhUnklMNO88YmuOLpOAxerBwk+i4fHXhddeXvfUlVT3NSO8ElylK4fmfHIaeHPOQ8gAN1NkXMkPDRigVySCZ+5ALxptIe6CFXhJgY0CiK85HcV4CMWbzUI1M6AOYGUOTyHesfRTKCHEmCrCZCFFaXTampsT6QGVwtze7btoDNKVUtgA+rjG690+33wFFH94tMM/tegNk4Q0dDnVdSAf8Rp9B3VlWMt0xyWHm+NFLzIUFh/wwM2BPCx+a9rYI9OqC7993QEefzaGtuoEo5lK38EAx/np5Mbw6+/Xj8PIKSoYh8Ui7jIUloX6qkTnZjVfJm0P3Vb3iaG59U22uegWR4eHDLVaGSPdZ5WMP2G1V5ajScpVP1nxlJ2++RJCG6b56nOLZjVi7xLO1J4tYwz7qXVPilpqyDr1l1c16eJf0/hxwY4p5K1uCJjSzCVvfPlvuG2vcKmpSF6S4EVJR4zB6wlhGGmU+wKZXrfi26jvyAVaORCoo1qs8Wg0akXqT7xTIFN/AVeObj+/hus/4pd62pcV+S3Hkpd72Um+jXu96Pcm16/ZrHwz1+h88Jg9KDg9V4RctvpxFo1mM/0kBha+2iKI3B1YnCKTuB4e326eKHDqYzS08YY5+YuqSHVPLKYZ//x/VIdLGlTIAAA==", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:19:14 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"f72c03b1024568eec3262f551682e466fc6f45b7db74d50f51746dca0fd5b1db\""], "Last-Modified": ["Sun, 01 Aug 2021 08:10:10 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["55"], "X-RateLimit-Reset": ["1635696979"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["5"], "Accept-Ranges": ["bytes"], "Content-Length": ["2620"], "X-GitHub-Request-Id": ["8D58:7D6A:192A15B:2C89D7D:617EB3F2"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2021-10-31T15:19:14"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/235/comments?per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA52V32/aMBDH/xWUPa6pQ0i7LQK2Su3DHmhFxdr9YIqMYxIPE1u2kzZF/d93dgIDunWCp0T2fT93Pt+df6y8UnEv9nJjpI4RwpKdZszk5eyUiCVSVAqNNMuWuGKq1GGEmt3eqawR07qkGoHhkhZGoyjsBudn513vBHhLnuyit7D/AsqScxT2zt44csv1t7BufY97TMjgA4JkqRev4SdeIVKa2CVvdHlV3yz4E+nd8XH4wczu78r0clyPJhfh9eTbI0hLTZUXrzwuMlaAZPtELTmMgve9YJc7Pr/7es3Jr8/B6DJ7Gl0MBmCMK2yw2j+VW9TtZVh3RBQG0uzupUQN/WM1iICQqZbhwrfhvXapFrZ7qQddGBjPBefiASj7Qe9Wz0tHaKPcUFiRHUkB5QoJk1PIHRzp2SaCaXN4UE61gsrWBgrAcjTkXtH04MBaHYT1UEBEK9dADljONFFMGiaKwwPcUQNNqAwX7AkfRwO1Bojr7YNP6FSgppVt+YPljWyFpGIVJrVNjaKEsgqSfSRyTw9EU0sKffDF9iiknhma4HRp+3SOuabPJx5RFBtwiQ3YhUE38oMzP+hNulEcdePw3XfQlTL9rw0uTS5UgrUWhLnrAN7N/fXVLQBmIq0TOwhhrS+HkxwXC93p4w7hIBhM3RDx7egE3dTrgDvs56KCVscq9e0pWqOXm9DgsIeaDptljM+oMmgjXgsEMcInnJEFWP9Bc1YsmuUdw5RBMNpWKFhbm8TGEGvK52CXKzq3lPal2Brna/9Tb/hp/d9HeNhHcrjOg6GPNtdtEjZm7fZfdjrTwhUHJq7K7bB9daod91RBg64dQN0Ig3lCRFlAqDC533bdx28+HJdZ7hZyIRSu3S8M5TlcAoxdu06xapRKkAVtfmlNIfgAik5SNRdqCWVXMZw0+UuwlF5cwLv3/PM3nkbxZY0HAAA=", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:19:14 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"0e14721257b8bd175f3b7d0b8b334ce174ed8217412a202d84c7084512c4bb72\""], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["54"], "X-RateLimit-Reset": ["1635696979"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["6"], "Accept-Ranges": ["bytes"], "Content-Length": ["719"], "X-GitHub-Request-Id": ["8D58:7D6A:192A17E:2C89DBE:617EB3F2"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/235/comments?per_page=100"}, "recorded_at": "2021-10-31T15:19:14"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_patch.json b/tests/cassettes/PullRequest_patch.json index da2dcb64b..9ba41e9dc 100644 --- a/tests/cassettes/PullRequest_patch.json +++ b/tests/cassettes/PullRequest_patch.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Thu, 25 Jan 2018 23:13:48 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "55", "X-RateLimit-Reset": "1516924595", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"6a40ed61fa463a6dbe2bdd37dd9ae9f7\"", "Last-Modified": "Wed, 24 Jan 2018 15:25:22 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.102292", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "B604:2D36F:15745C9:3C80B39:5A6A64AC"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2018-01-25T23:13:48"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.patch", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "string": "From 47cba939175db6f450e46c25279d3b83c88df94b Mon Sep 17 00:00:00 2001\nFrom: Benjamin Gilbert \nDate: Fri, 2 May 2014 02:08:14 -0400\nSubject: [PATCH 1/2] Add Release.assets attribute\n\nThe JSON describing a release includes complete information on its\nassets. Add Release.assets attribute with a list of Assets. This is\ncheaper for the application than making a separate request via\nRelease.iter_assets().\n\nLeave Release.iter_assets() in place, in case someone has a use for it,\nbut mention Release.assets in its documentation.\n---\n github3/repos/release.py | 6 +++++-\n tests/unit/test_repos_release.py | 16 ++++++++++++++++\n 2 files changed, 21 insertions(+), 1 deletion(-)\n\ndiff --git a/github3/repos/release.py b/github3/repos/release.py\nindex 8b4f9424..9968adc8 100644\n--- a/github3/repos/release.py\n+++ b/github3/repos/release.py\n@@ -22,6 +22,8 @@ class Release(GitHubCore):\n def __init__(self, release, session=None):\n super(Release, self).__init__(release, session)\n self._api = release.get('url')\n+ #: List of :class:`Asset ` objects for this release\n+ self.assets = [Asset(i, self) for i in release.get('assets', [])]\n #: URL for uploaded assets\n self.assets_url = release.get('assets_url')\n #: Body of the release (the description)\n@@ -104,7 +106,9 @@ def edit(self, tag_name=None, target_commitish=None, name=None, body=None,\n return successful\n \n def iter_assets(self, number=-1, etag=None):\n- \"\"\"Iterate over the assets available for this release.\n+ \"\"\"Iterate over the assets available for this release. The same\n+ information is available, without an additional network access,\n+ from the :attr:`assets` attribute.\n \n :param int number: (optional), Number of assets to return\n :param str etag: (optional), last ETag header sent\ndiff --git a/tests/unit/test_repos_release.py b/tests/unit/test_repos_release.py\nindex c9d12f6d..d0cd4130 100644\n--- a/tests/unit/test_repos_release.py\n+++ b/tests/unit/test_repos_release.py\n@@ -15,6 +15,18 @@ class TestRelease(UnitHelper):\n example_data = {\n \"url\": releases_url(\"/1\"),\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n+ \"assets\": [{\n+ \"url\": releases_url(\"/assets/1\"),\n+ \"id\": 1,\n+ \"name\": \"example.zip\",\n+ \"label\": \"short description\",\n+ \"state\": \"uploaded\",\n+ \"content_type\": \"application/zip\",\n+ \"size\": 1024,\n+ \"download_count\": 42,\n+ \"created_at\": \"2013-02-27T19:35:32Z\",\n+ \"updated_at\": \"2013-02-27T19:35:32Z\"\n+ }],\n \"assets_url\": releases_url(\"/1/assets\"),\n \"upload_url\": releases_url(\"/1/assets{?name}\"),\n \"id\": 1,\n@@ -29,6 +41,10 @@ class TestRelease(UnitHelper):\n }\n \n # Attribute tests\n+ def test_assets(self):\n+ assert self.instance.assets is not None\n+ assert isinstance(self.instance.assets[0], Asset)\n+\n def test_has_upload_urlt(self):\n assert self.instance.upload_urlt is not None\n \n\nFrom 560c19155ac83eb38713db56c56c7aeaa122c528 Mon Sep 17 00:00:00 2001\nFrom: Benjamin Gilbert \nDate: Sat, 3 May 2014 00:06:20 -0400\nSubject: [PATCH 2/2] Revert Release.iter_assets() docstring change\n\n---\n github3/repos/release.py | 4 +---\n 1 file changed, 1 insertion(+), 3 deletions(-)\n\ndiff --git a/github3/repos/release.py b/github3/repos/release.py\nindex 9968adc8..10e0b774 100644\n--- a/github3/repos/release.py\n+++ b/github3/repos/release.py\n@@ -106,9 +106,7 @@ def edit(self, tag_name=None, target_commitish=None, name=None, body=None,\n return successful\n \n def iter_assets(self, number=-1, etag=None):\n- \"\"\"Iterate over the assets available for this release. The same\n- information is available, without an additional network access,\n- from the :attr:`assets` attribute.\n+ \"\"\"Iterate over the assets available for this release.\n \n :param int number: (optional), Number of assets to return\n :param str etag: (optional), last ETag header sent\n"}, "headers": {"Server": "GitHub.com", "Date": "Thu, 25 Jan 2018 23:13:48 GMT", "Content-Type": "application/vnd.github.patch; charset=utf-8", "Content-Length": "4174", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "54", "X-RateLimit-Reset": "1516924595", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "\"3f3f74e7e5c7460ca100a30ea3b16c19\"", "Last-Modified": "Wed, 24 Jan 2018 15:25:22 GMT", "X-GitHub-Media-Type": "github.v3; param=patch", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.051412", "X-GitHub-Request-Id": "B604:2D36F:15745D7:3C80B61:5A6A64AC"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2018-01-25T23:13:49"}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:28:10 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"f72c03b1024568eec3262f551682e466fc6f45b7db74d50f51746dca0fd5b1db\""], "Last-Modified": ["Sun, 01 Aug 2021 08:10:10 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["47"], "X-RateLimit-Reset": ["1635696979"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["13"], "Accept-Ranges": ["bytes"], "Content-Length": ["2620"], "X-GitHub-Request-Id": ["8D5E:33B8:10225A1:2FBCEE6:617EB613"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2021-10-31T15:28:19"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.patch"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "string": "From 47cba939175db6f450e46c25279d3b83c88df94b Mon Sep 17 00:00:00 2001\nFrom: Benjamin Gilbert \nDate: Fri, 2 May 2014 02:08:14 -0400\nSubject: [PATCH 1/2] Add Release.assets attribute\n\nThe JSON describing a release includes complete information on its\nassets. Add Release.assets attribute with a list of Assets. This is\ncheaper for the application than making a separate request via\nRelease.iter_assets().\n\nLeave Release.iter_assets() in place, in case someone has a use for it,\nbut mention Release.assets in its documentation.\n---\n github3/repos/release.py | 6 +++++-\n tests/unit/test_repos_release.py | 16 ++++++++++++++++\n 2 files changed, 21 insertions(+), 1 deletion(-)\n\ndiff --git a/github3/repos/release.py b/github3/repos/release.py\nindex 8b4f9424..9968adc8 100644\n--- a/github3/repos/release.py\n+++ b/github3/repos/release.py\n@@ -22,6 +22,8 @@ class Release(GitHubCore):\n def __init__(self, release, session=None):\n super(Release, self).__init__(release, session)\n self._api = release.get('url')\n+ #: List of :class:`Asset ` objects for this release\n+ self.assets = [Asset(i, self) for i in release.get('assets', [])]\n #: URL for uploaded assets\n self.assets_url = release.get('assets_url')\n #: Body of the release (the description)\n@@ -104,7 +106,9 @@ def edit(self, tag_name=None, target_commitish=None, name=None, body=None,\n return successful\n \n def iter_assets(self, number=-1, etag=None):\n- \"\"\"Iterate over the assets available for this release.\n+ \"\"\"Iterate over the assets available for this release. The same\n+ information is available, without an additional network access,\n+ from the :attr:`assets` attribute.\n \n :param int number: (optional), Number of assets to return\n :param str etag: (optional), last ETag header sent\ndiff --git a/tests/unit/test_repos_release.py b/tests/unit/test_repos_release.py\nindex c9d12f6d..d0cd4130 100644\n--- a/tests/unit/test_repos_release.py\n+++ b/tests/unit/test_repos_release.py\n@@ -15,6 +15,18 @@ class TestRelease(UnitHelper):\n example_data = {\n \"url\": releases_url(\"/1\"),\n \"html_url\": \"https://github.com/octocat/Hello-World/releases/v1.0.0\",\n+ \"assets\": [{\n+ \"url\": releases_url(\"/assets/1\"),\n+ \"id\": 1,\n+ \"name\": \"example.zip\",\n+ \"label\": \"short description\",\n+ \"state\": \"uploaded\",\n+ \"content_type\": \"application/zip\",\n+ \"size\": 1024,\n+ \"download_count\": 42,\n+ \"created_at\": \"2013-02-27T19:35:32Z\",\n+ \"updated_at\": \"2013-02-27T19:35:32Z\"\n+ }],\n \"assets_url\": releases_url(\"/1/assets\"),\n \"upload_url\": releases_url(\"/1/assets{?name}\"),\n \"id\": 1,\n@@ -29,6 +41,10 @@ class TestRelease(UnitHelper):\n }\n \n # Attribute tests\n+ def test_assets(self):\n+ assert self.instance.assets is not None\n+ assert isinstance(self.instance.assets[0], Asset)\n+\n def test_has_upload_urlt(self):\n assert self.instance.upload_urlt is not None\n \n\nFrom 560c19155ac83eb38713db56c56c7aeaa122c528 Mon Sep 17 00:00:00 2001\nFrom: Benjamin Gilbert \nDate: Sat, 3 May 2014 00:06:20 -0400\nSubject: [PATCH 2/2] Revert Release.iter_assets() docstring change\n\n---\n github3/repos/release.py | 4 +---\n 1 file changed, 1 insertion(+), 3 deletions(-)\n\ndiff --git a/github3/repos/release.py b/github3/repos/release.py\nindex 9968adc8..10e0b774 100644\n--- a/github3/repos/release.py\n+++ b/github3/repos/release.py\n@@ -106,9 +106,7 @@ def edit(self, tag_name=None, target_commitish=None, name=None, body=None,\n return successful\n \n def iter_assets(self, number=-1, etag=None):\n- \"\"\"Iterate over the assets available for this release. The same\n- information is available, without an additional network access,\n- from the :attr:`assets` attribute.\n+ \"\"\"Iterate over the assets available for this release.\n \n :param int number: (optional), Number of assets to return\n :param str etag: (optional), last ETag header sent\n"}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:28:19 GMT"], "Content-Type": ["application/vnd.github.patch; charset=utf-8"], "Content-Length": ["4174"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["\"7df8af5241f10552b617ab8631a6dae2503eafefd54bc0d529ff272de74ca923\""], "Last-Modified": ["Sun, 01 Aug 2021 08:10:10 GMT"], "X-GitHub-Media-Type": ["github.v3; param=patch"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["46"], "X-RateLimit-Reset": ["1635696978"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["14"], "Accept-Ranges": ["bytes"], "X-GitHub-Request-Id": ["8D5E:33B8:10225AA:2FBCEF2:617EB613"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2021-10-31T15:28:19"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_pull_reviews.json b/tests/cassettes/PullRequest_pull_reviews.json index c144a9343..cf35098e6 100644 --- a/tests/cassettes/PullRequest_pull_reviews.json +++ b/tests/cassettes/PullRequest_pull_reviews.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/671"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Thu, 25 Jan 2018 23:14:34 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "53", "X-RateLimit-Reset": "1516924595", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"2c906c73d109148caa773ea48b3d72d1\"", "Last-Modified": "Wed, 24 Jan 2018 17:52:18 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.102127", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "9642:2D36F:157562A:3C834BC:5A6A64D9"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/671"}, "recorded_at": "2018-01-25T23:14:34"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/671/reviews?per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+2ZXW+bMBSG/wu7TQuG8ClNU9v1YlLXSFWqSZumyICTeCWQYZOui/LfdwxuFdwmLQGl6dQrIvD7+hzb55F18mOp0VgLkOc4FnL7Pa1gJNeCpZZkE5pqgcboZIYXNC+Y2dd65WCzb3iW0dPwAnOcj4o8gXFTzucs0PXqJbOOJ5RPi1DYRVnKScqPo2ymF3ql/rT4KOwmuTQRvhq8UMzmVPpUYjBjuhLRlM8SJYZq6lKiDB5nSZLdgosa9XMT6Q9KCLL6TdPJji6gXOoZnxJYPEhpJRaCMt48qFK11MVjRGPhw2BHchI3DkzqIKzbFCJa6jmZZ6VhEbIop3NOs7R5gDU1uGX5BKf0L97NDdQMTERozUMpVaAmCziLzeWVbKnPc7rA0Z1YmpxEhC5gsXe0VPTgyO/mBOrgWtQgLD3lZITjmajDMU4YWfW0MIvvqkqBHeNi8Nng69fzy+H5Z1C8vBbgzIjytI7nd/q8SBLdcdEH8SMnvwvCeE4WlNwe3XMBvMXHkfy6/XiVK12rPHU2JqYDT1zwaZaPMGNZRMtDAQkNvl2eX8HHUULTGyZYJNIqnzkZr6FmQ5mrkz2XGqzqem5PTITrdHhpfiu5X6MqfoE3sX0jTv5wuYdFOKOcwxHC4o1pIPfIQEemM0ROYNmB6X0HEXAMRkGBwxCHhL4RImLEkUuwaRHLt2wjJJHf70dubIwRCkOEbG3Vuye7a7gOch6TPZtNfiU34C+MbdMyPXc7082NTK/ULZj+EMv2E/wwrBHHK9XuBK/p27BbGrWitvTojtf3huuch0PRmNTSpymjpaw5naWwGy4/RFEjOizDZiLzvHgVIFflvE8gnw0uLk5OB1cnw8FeuCwzPEwu+0HfDfrdcNn3fUCueuOmnM3IDHMeTYt0IvnsWraHDHM7oNFGQEt5C0I/imo7qR8Nb0Tsunp3cj/p04bgimErkite3RFdNW5LdsWvKeEVeXPSKwbdEP9RVC8n/6vdxV1DEGO/6L8cXn05vd4b+csED5X8thfYqIMbuW8g5EMDRSX/e6+lbDPtzvv1BZQubWhfs2vF+ppTd6Sv27blfM2tKeVr4uaMr8m7IbwS0Rvge8WFffJ9b70WmdoBkt0dIi+wzMA0VbJ7xI+wYdhO6I1J7MPTcWI8Dm3L91zbjWIv9kL4sNZrgTRN64k7/fpZlDf69y562Yt/76Ir3UVxKVC6p+9ddGhVb/gHCP6oeBtkBy78r2QXqR0w2S17d7L//Ac97uRSIR0AAA==", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Thu, 25 Jan 2018 23:14:34 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "52", "X-RateLimit-Reset": "1516924595", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"2b6fc7127db008694299d5d51543dea6\"", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.145408", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "9642:2D36F:1575636:3C834DB:5A6A64DA"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/671/reviews?per_page=100"}, "recorded_at": "2018-01-25T23:14:34"}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/671"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:20:04 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"74724b0e6fbcdd08740ecdc213ad8f62eb1e16115ca3b3ad4deb0f05e9a02f24\""], "Last-Modified": ["Fri, 22 Oct 2021 19:01:01 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["53"], "X-RateLimit-Reset": ["1635696979"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["7"], "Accept-Ranges": ["bytes"], "Content-Length": ["3136"], "X-GitHub-Request-Id": ["B912:1FBF:F9B38E:1DB9861:617EB424"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/671"}, "recorded_at": "2021-10-31T15:20:04"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/671/reviews?per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1Za2+jRhT9L1TqpyQwvEGKVsk6rSIttjZLsmmqyhqGAZNgcGFw/FD+e+8ATm3iTYJtedPKn0DAOffeYeYczZ0/50LkCzYydV1BhnokJKlP+/yR4HQulF58jrzfJ9/ubn9Dd7dd6Xp4I+PvN4rjhnL33pl0Z19PhSOhyGkm2HMhTsMoAWgehUM8jrIil1V4zelkVTIVaZX/q35z243J/aXkdMKZc3bKufAYM5z1iywGogFjo9wWxephfhJGbFB4PBxJE0YTdkLSoViIFfun4pQE1PB9QohmyorpUd9TkaEHgYxN3yOyJBEdK0j1fx2f8szCrA5XVswrWQ07iuqQVRyIm4uN4gZsGDeyrbIsIY2PgzSO00dgadb3ViDxGQlJVvdREm7IAsi5mLIBhWGGkp74QEQ5a59UiZqL/AJzhvPk8O8y6rdOrMZBWo8JZDQXMzpKS8LCy0kWjViUJu0TXEEDW5qFOIlmeDM2QOdAwlNrn0qJAjQdw7RtD69gc3GURWNMpnxoMkpoNIbB3pCygQdGNh1RWAfXfDnD0EeM9rE/5Es6wHFOn44EL/Wn1UqBP8b4x597jnPRdS86gHj/WoA5w1eycjKaiqMijkXdQL/wm4z+XdCcZXQc0cfjhS4BN3/Zr9++Pr3KkV5Zec1oOQ8HnLhggzTr4zxPSVROCiio9717cQUv+3GUPORc1nhZ5TWjwZIo/WCZN4O9VRqM6nJtawLhVXV4b31P9f/qV/lzeeO/r8/ohNX/sPCGEWMwhTB/IkvIOJbQsay7SLcVzZbNOwCBjsFXlSno1LMkD1HJJwbFskIVS9EkjxJLVYnhSwFCnoeQJjwdLZzFkAwd6S2cRXE6RHbcP9Y5SzoM7+MHSIoLtiYrsmms95TrqTO7VLuPm3tKxf5pc6N4zvX1ZfH8WStzqFCb28IKfhtDqIm2soKaY3cmsCBcNg+YNK3lv+ZpK/w1rL3k18DdiP1zFis2AcPwY5lnWfFTVL7SiH2q/Ofely9n572rM7e3F7GvK/yYYm/ZqmGruxF7y7IakvzqNgLE/kHruWSd2EcsH9IhZowMiiSsRd9QNBNJ8nrVJ7OuG06czuXGO4maHrYSgUwp8UxKJAmrqhaoZoA93VcRUpUAnE7VsK+D122xlXhR4OtO8eLzVo6xit7cOdbybOMgDcKtnKTBtTtHaRJv6ywNvrYO04C3d5oGwW4c50VW73een7bBMCSuWPu1nq57dXl+vTfnKQv8qM6jmbaGdrDNsCSErEaD6VXn0aDBNem5Z+uc59DAgs35oYH1b//xzf7c7pxmee6JhwbWYiLyTmWjq/OfaGBVurRPf9lbA6su7QM6i+Ei01ZkW5abzmJSi2BJ0nTPDKhvwVXXfRx4mmKZhmYQ3/T5sYG11MCCMmWlzZ6GOwu0n9buaQ7OcnCWlZOtg7OUZz2Ho5HFgem7zw8qXfq/OgtI7kfcsyycRdE2d5a//gFJDTEkdh8AAA==", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:20:04 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"06b2b981b1ad71eaf93337ecf9891be40da36ca8961d3ff1f18b1178fe9d0efe\""], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["52"], "X-RateLimit-Reset": ["1635696979"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["8"], "Accept-Ranges": ["bytes"], "Content-Length": ["1126"], "X-GitHub-Request-Id": ["B912:1FBF:F9B3D1:1DB98E6:617EB424"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/671/reviews?per_page=100"}, "recorded_at": "2021-10-31T15:20:04"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_reopen.json b/tests/cassettes/PullRequest_reopen.json index 065426920..ac5bbf751 100644 --- a/tests/cassettes/PullRequest_reopen.json +++ b/tests/cassettes/PullRequest_reopen.json @@ -1 +1 @@ -{"recorded_with": "betamax/0.8.0", "http_interactions": [{"recorded_at": "2017-02-12T16:17:45", "response": {"headers": {"Status": "200 OK", "X-Content-Type-Options": "nosniff", "Content-Type": "application/json; charset=utf-8", "X-GitHub-Request-Id": "ABC8:5521:3516B28:427992C:58A08AA9", "X-RateLimit-Remaining": "4999", "Cache-Control": "private, max-age=60, s-maxage=60", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "Access-Control-Allow-Origin": "*", "ETag": "W/\"659752a4356b97cb7f3ef455a4c9b72a\"", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "Last-Modified": "Sun, 12 Feb 2017 15:23:46 GMT", "X-Served-By": "a474937f3b2fa272558fa6dc951018ad", "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Date": "Sun, 12 Feb 2017 16:17:45 GMT", "X-Frame-Options": "deny", "Content-Security-Policy": "default-src 'none'", "X-RateLimit-Limit": "5000", "X-XSS-Protection": "1; mode=block", "Content-Encoding": "gzip", "Transfer-Encoding": "chunked", "X-RateLimit-Reset": "1486919865", "Server": "GitHub.com"}, "status": {"message": "OK", "code": 200}, "body": {"encoding": "utf-8", "string": "", "base64_string": "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"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "request": {"uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2", "headers": {"Accept-Charset": "utf-8", "Connection": "keep-alive", "Content-Type": "application/json", "Accept": "application/vnd.github.v3.full+json", "Accept-Encoding": "gzip, deflate", "Authorization": "Basic ", "User-Agent": "github3.py/1.0.0a4"}, "body": {"encoding": "utf-8", "string": ""}, "method": "GET"}}, {"recorded_at": "2017-02-12T16:17:46", "response": {"headers": {"Status": "200 OK", "X-Content-Type-Options": "nosniff", "Content-Type": "application/json; charset=utf-8", "X-RateLimit-Remaining": "4998", "Cache-Control": "private, max-age=60, s-maxage=60", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "Access-Control-Allow-Origin": "*", "ETag": "W/\"e0e122f060baa2189a9f3f5e4a701b69\"", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-GitHub-Request-Id": "ABC8:5521:3516B38:427993D:58A08AA9", "X-Served-By": "bd82876e9bf04990f289ba22f246ee9b", "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Date": "Sun, 12 Feb 2017 16:17:45 GMT", "X-Frame-Options": "deny", "Content-Security-Policy": "default-src 'none'", "X-RateLimit-Limit": "5000", "X-XSS-Protection": "1; mode=block", "Content-Encoding": "gzip", "Transfer-Encoding": "chunked", "X-RateLimit-Reset": "1486919865", "Server": "GitHub.com"}, "status": {"message": "OK", "code": 200}, "body": {"encoding": "utf-8", "string": "", "base64_string": "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"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "request": {"uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2", "headers": {"Accept-Charset": "utf-8", "Connection": "keep-alive", "Content-Type": "application/json", "Accept": "application/vnd.github.v3.full+json", "Accept-Encoding": "gzip, deflate", "Authorization": "Basic ", "Content-Length": "53", "User-Agent": "github3.py/1.0.0a4"}, "body": {"encoding": "utf-8", "string": "{\"title\": \"Update test\", \"state\": \"open\", \"body\": \"\"}"}, "method": "PATCH"}}]} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:28:45 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"5a50c1ea951d1620560fb845ec6f7d4cfaa65a2d95793bfe08afb796c2c0f0b8\""], "Last-Modified": ["Sun, 31 Oct 2021 15:20:24 GMT"], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4992"], "X-RateLimit-Reset": ["1635696820"], "X-RateLimit-Used": ["8"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["8D62:106C:1F26A08:365C26B:617EB62D"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "recorded_at": "2021-10-31T15:28:45"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"title\": \"Update test\", \"state\": \"open\"}"}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Content-Length": ["41"], "Authorization": ["token "]}, "method": "PATCH", "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1b2W7jOBb9lUCvk0SLdwOFnm4kXagBkqB70o1MDQYGJVE2y7Kk0eKUI9S/z7kUtVhxx3Hkh3kQkCpYEnl4dXXJuxwy17LY1+baKk2jZK7rLBLXS5GuMvvaCTd6zKMw0Ysbg2inu9znKV84YZDyIE30KPP9RLe0S0242tw0RpPZYDqdXmpB6PIF3dPubm6/P/i/mPbn7//8+vSr+fXp3rh7/Nm8f1m/PNwsh+i7Sjf+Yl+Ohgxvjy4Hd4XnfRzgmroDJWKps+oAI/uTKpIk4y2cE/UqIQrFBtnG5rE2ty61JGUph0rDiAcYxw+dNYeKPeYn/FJLRerT0z8iF80uUp6kaJQl1DlH46UI8DQRyw3bijhLLFI9fSJraEwHxv43+23859O973z7YtzdLF/ufv70CY3ZlqUsbr+ZvJkoq6HhlHVIA8r0Av2n7ScabhkrDGkaJN5b1kdgid6S+G1jaTX2Qt8Pn4HSFnrfzF8PpFc9IWTxWwTLD6KgZ66H6YpDd3ilH6QIkaSnCyV75ZiPSYrJRTgwiTjm7smCqX4Q6zmARLmc6RIwsxMnFlEqwuB0Afd6Ay2MlywQL+xjaOidAEQuQie/oeyF3nxLK9XJ3YtuuR7FYsucHakm5g4XWyj7g5Ct/kBMd5GcsTRHoXqBpZW5G5qnck7/uNTs0N1p8wDL7KXmxBwT212wFH0sw5xcGdaVaT2ao7lhzoejr8DI5OSv2ljmlWlcDUxqY01VG8cPE9WkAN7wePn6Blb5zUaki2TFMN7IcKamNzUmE8MezmZTz2LGaOAxPhlPrOF0Yg5sc2w7Y8jAEszCgOPNCvjyOtHm//4PqfG/WNtIyJhvBafZ2X6QcrZRN31mc1/93ggfHcOgQnZj5kEZagEs5D3yqd/p0XQFJj87SSm1cdySToEntFf4bxvq++BLUXO9cB5kvOcRv/RLUj1KfvJKWNY66r1E0YeuZ85G7mBkmbBxx56x0XQ8cOypyU3T9Bjz7Akfj8jQVpzBjcC3kY3ARqtIYU7O70ra+VUE86KP6KHBq9uFbZ8wZNudVkNiDBkCTaaWORq3AqDdw3q2+2r9mrGnaOV+9rf2t9vBw82X7/eP//qwY1VDdfCsTeHfdqvNlif51Dp4+7BDbUN08aY1VidXWsOcz482MJsuGHZ1shOtoU71oHXP091n3fc8vrMpy57jhUqU43xohBe4e8iB0nvQGkGTc2QMp2OrHerePj/4//Cdz7MX9vT71gnW5t3Nb8P7b1/KsDdgG/LSrdwH43lwywv1tJb2dTsZQ1DkrhyVjLmaQXnVuV9FWolSEZnXyu1Xkb9K1dua6hyK96tIHYa/0zu26yOYzi6v0imsIY8rkVzgL+WbKIxZLPzdBT6ce2HvLpS+r6PdhRfGFwIlFqTLlDnJXB5uj5acMF5X68ibyfORUFFhdYzaSBwKr9Z81xGJEHId/6vE1kHmzmzoKA2PZe9H3hSxagMq37ukyFgmG93C7iJfQUAahuuOUBKC3IAsIr0n0zz2+ipmL51ynRKcA7zAgLxVktdNkxVMrpelEjtmgbPqml+UKLle/JJfni07fi1CAJDth3ZHJMx+XcLkOpKSokSULrpLSLiEsgeLbOgM4hJKBZvGvOsnkqISTAV65tQyV5r1WbDM2LKrvBUMLIDygCV7OVppPDZZaxyAUiE1FnZ2jiWwRiJpiwwDdeWOZtAAqmFl7bDbMtAMXqQiqBLVUVYFsjcRzgJMdtsGP0+55VAhp3AM6kk3LSvPcGiUkuHpNkDFE+V/AzmyUnWoiMUd6RFITCB6bjNUSa+vr3MqBRG8LGV2NJQCA2AsdlYo+HbTQV6iIFbasFSW2j0S1UUa6IfM7ShtBQPI4oN2k7fAaJYOJcnXDVRCNDGrUm5H4BqniR6EqfCE8x7a4diCvAeV/5SIwOGXDOV4GGAqHAG7RmRO37OoVHfTU4GBV0HJgTBj8K0w8Y5KKlFyvSCNXB754e4M1ewGEK3SLX5ifGWYV9bk0RjPzfF8OD7AT5iH2kRZsmrQHFOCMUaP1mBuDPFHMFhylaLxC7R1kTtJxlGlUa/JamIo0TVJSo4X13+vO86PdUQ5OWivBaeMu237xPd0hsCrcMMjRCslnZKIF/we7sUcTpgFIEJA4j4TCU1+vb5VxiklwIoli2KWa/M0zkAd050oDr9xB4xE4169tjRuPou12OtIkVR5QyaEjbE3Io5DRRkrNqhYVFGOU9UwVyTM9htENtHbSsASycL0Eg4PkppUImJ3QcNRYqzEE8mCMmu/WWxLw0g4ikDaikTYwhcpODUtymxgQsFFEkvKa4wsCfdSmVKzLvdY5qeLIn8AwIaBxYq1H0TTYZIeZiJUo5KBqC4L5mEymdpgFYez8dT1BmObTQYzb+CZzsiwDceZziYzZzB2GKTsmQfFwx8NWtuVsL5m2NcMT2Lta0/wl5R9zzz0/OU7NwTV1lTtI/rwbqAaq+cvD23has7cU7f/1H3/n/jLnnnI7EM7T3vmQW7A7ZmHnnnoWB3AutczDz3z0DMPckHtmQephkOcQM88SL30zIM6/NMzD3Iz+h6v0TMPe+fDeuaBVtOeeVAnQXrm4ezMw8IXATaMYYdzwn2ccci1VXHWoeOJTpAaVHo4APge2koeDMXRTKDIqOEAzEdPRAKyDE7Oh1rFOyRx68BP91HUKdk3BjnXGK/DNqUu7J451xhWudmFdFXu0OoOfvoBICLeWJauwC9i22DoCMn3g5i7u7375fZ3cGZ4Gi7kdo6S+6TzdIvCsAs6Ut5I+Xewp4qfdFLa80GHa3FAjSWE2DwmV/GWEpeYy/J5zIkGbN6pmizo7dBQy4J1gH0fkE0durPr433lkSoiG1/Z4AA9GPYE4x+OkTosWGxCnFtG7/3TbziChPd2XSGPXMoreSChunJW2P0GOsSjw3R4/uN/HWvyxgM+AAA=", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:28:46 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"3bbc9d6d13354328197d42e5ca201e4196d6272d50cf5d1cb57a0edf7f7e0c45\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4991"], "X-RateLimit-Reset": ["1635696820"], "X-RateLimit-Used": ["9"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["8D62:106C:1F26A24:365C29F:617EB62D"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "recorded_at": "2021-10-31T15:28:46"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_review_comments.json b/tests/cassettes/PullRequest_review_comments.json index bd9dc47f9..51b528847 100644 --- a/tests/cassettes/PullRequest_review_comments.json +++ b/tests/cassettes/PullRequest_review_comments.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Thu, 25 Jan 2018 23:20:46 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "51", "X-RateLimit-Reset": "1516924595", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"6a40ed61fa463a6dbe2bdd37dd9ae9f7\"", "Last-Modified": "Wed, 24 Jan 2018 15:25:22 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.081646", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "965C:2D36F:157CB42:3C96BAB:5A6A664E"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2018-01-25T23:20:46"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235/comments?per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1ZbW/bNhD+K4T2YS0qW+9+Q9J1b9gCDMmQpSiwelAoiraJyqJGUk49I/99R0p2FFdx48TphiJJACvk3cPj8e746Px+ZZUis0bWTKlCjhwHF6w7ZWpWJl3C546gBZeOZNM5XjBRSj90qtmgWyydoswy6YDcnOZKOp7vh73+ILBsS8/Egv5dUqngc8HoVcxSa5TDuG3pp7WwbaVsMolnZf4BzHjzBnU8N7T76JXn9uwhgoGUThBNmXohaTaxkcLTOMdzenzKc6r/FVOqYm0EU0zO6uGGRMLTZTU6ztH6R1BVihzJkhAq5aTMYK6e1usxRUWMpaRK1svm5Tyh4rjj2YiCCQbw5Wicd9aIY0v/noAiVhTxBRVIzSiqQBBeYJbhJKNowvUEk0jQjGJJu+P81aMxELqAtSS4RTsfqxn4sj6o+gzXqxVLLcElOIvn6wPhgk1ZjrP4ZsILbatyqjk4K+q5xBt6UYTJIKBJMOh7QZpEPQJ/fUwxhgMlkT8A9A1aUz/skwQPg6HXj9KkNwkjl4Y94kd+f5gGySAgg0E6GYYJ6JeSCmu0sjIORsHSzfCDaW2OH7qDwLUtcCsEQLwVw2ZQBnUgazjCcwUxamK6dCrt7xbHIcBNRQ1itqmX35UQGux2QoDGTM2zLRsaObRl/oRnGb8ClG2rb2fepws5G01Ysnpm+fSBKKC5cjgEKDgPtnStHcGk2t8oo7WCqgCJzlKNI8H5gqZ7G1brgVlXOVi0MoFrAMtEEsEKHbH7G3hLG9C4mOKc/YMfhgbaEkBMXdx7h0YLtOlC18u91Su1lVMItsBkqV0jKKFsAc5+IOSWPiCqZUEhD97qHATXQyGMcTrXeTjBmaTXtqXrKUj8RtW3uohBoVOm0pEZzqcUKV6Vt5STjlQCAq27KU4oXUJhZgRB+SsEleAGxHN0+QtEz6VEV3DxIIwuJyyj8hLhPEWXphLXAwVmAsol2EUEhSqbxliBJb7rhR036rj+he+O/OEo7P0JMmWRtsgEF244cnujINQy98/c7XvP8YPom5RJUkoJcRmLu26/neXkPvcrLASW4lLNuLmTOGEmeGHnZ+9Ofz6HyThj+Qepa6a+I/XnTFD4POy1Dmev/dUCf0e1u7/PALpJGVqWeAAx0Y67rgM2riy3jorXBwzcI8JT+lpH7xHQIHjcxHA1Y+K2njLhXA3fxPR6zkT2kVO8hsPU+RUr+lGH9gFt1VZuzDOGGYtubEHGCOvaPjgnHAQ92Nc9OSEIt3DCyO4BJYxsb6ApIckgD9AFkMvzikS9eJsz9SvNCio0KTN8in7E8yKjMVQBjI7RqsH+xvqSH1ujNQcztfjF2HK8sfXSviW4rhBaerzJp0bAc6I4wcqB1TPeecdFlsLNZaiddBZe1+26YwswGySv4oQa8f1KO6biawq2I50SNuLoR6DN+o65g7cBO2shbc+cre0l5lMqtVflB+FnzmaI8yfc13nmbM235RYH/b842x81N8NFQeENSXO1BF5RoQwSTcVwCq/ZwCwqDkfR97+faGaXawKHgWCYd1eodWQGrM6wvM+yscAbuf5/xcZa7p2vg43pjT0RG6uhvxgbO3xIttCowy9yeJoUhVGkuyf3oklGuIUmPbfO9m6/fdWts2TKMmhbKogr3d4Kel7QB5K4q23m3dk2q7Qf0TZrWLP7xbshuBf1Wus9vFW2hfCYNtkG6lEtsg3K4ajWDWSzsQYhsndrbIO0b1tso7h/S2yjehhq1bDkVisN3HHvVthP8F3ALiZU9Zz6o/CzTGgtszs9dn0f09aXar1anpIJ/Xh2enF+8sPbi7Mv0Z2qtvckfGgD/cX4kImlFgpjxq3rv/4FLIzBFbIbAAA=", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Thu, 25 Jan 2018 23:20:47 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "50", "X-RateLimit-Reset": "1516924595", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"43a972ba207ed683aa2d3bb0c14e57da\"", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.116180", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "965C:2D36F:157CB49:3C96BCC:5A6A664E"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235/comments?per_page=100"}, "recorded_at": "2018-01-25T23:20:47"}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:29:05 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"f72c03b1024568eec3262f551682e466fc6f45b7db74d50f51746dca0fd5b1db\""], "Last-Modified": ["Sun, 01 Aug 2021 08:10:10 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["45"], "X-RateLimit-Reset": ["1635696979"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["15"], "Accept-Ranges": ["bytes"], "Content-Length": ["2620"], "X-GitHub-Request-Id": ["C69A:66AE:355458B:664EB9C:617EB641"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2021-10-31T15:29:05"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235/comments?per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:29:05 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"c0fcf18efdbeac7ef110b00ff04315a630cb4195c03df9d162a71edfa9e47beb\""], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["44"], "X-RateLimit-Reset": ["1635696978"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["16"], "Accept-Ranges": ["bytes"], "Content-Length": ["1642"], "X-GitHub-Request-Id": ["C69A:66AE:35545AD:664EBE5:617EB641"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235/comments?per_page=100"}, "recorded_at": "2021-10-31T15:29:05"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_review_requests.json b/tests/cassettes/PullRequest_review_requests.json index 6b90ab990..e2962096a 100644 --- a/tests/cassettes/PullRequest_review_requests.json +++ b/tests/cassettes/PullRequest_review_requests.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "User-Agent": ["github3.py/1.1.0"], "Accept-Charset": ["utf-8"], "Connection": ["keep-alive"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873"}, "response": {"body": {"string": "", "base64_string": "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", "encoding": "utf-8"}, "headers": {"X-XSS-Protection": ["1; mode=block"], "Content-Security-Policy": ["default-src 'none'"], "Access-Control-Expose-Headers": ["ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval"], "Transfer-Encoding": ["chunked"], "Last-Modified": ["Tue, 31 Jul 2018 12:37:29 GMT"], "Access-Control-Allow-Origin": ["*"], "X-Frame-Options": ["deny"], "Status": ["200 OK"], "X-GitHub-Request-Id": ["B580:3FAB:52E7FA:B40A6F:5B605829"], "ETag": ["W/\"01257746bfd27013f4b23d3f1d29c965\""], "Date": ["Tue, 31 Jul 2018 12:38:01 GMT"], "X-RateLimit-Remaining": ["58"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "Server": ["GitHub.com"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-Content-Type-Options": ["nosniff"], "Content-Encoding": ["gzip"], "X-Runtime-rack": ["0.178221"], "Vary": ["Accept"], "X-RateLimit-Limit": ["60"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Type": ["application/json; charset=utf-8"], "X-RateLimit-Reset": ["1533043716"]}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873"}, "recorded_at": "2018-07-31T12:38:01"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "User-Agent": ["github3.py/1.1.0"], "Accept-Charset": ["utf-8"], "Connection": ["keep-alive"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/requested_reviewers"}, "response": {"body": {"string": "", "base64_string": "H4sIAAAAAAAAA52TUWuDMBDHv0ueSyNtGUOQMejLHhzsYWMwiqR6jTdiIkm0tOJ330VlMF+GPinhfr/755J0rHFgHYu/OqaMRM1i5lBWokXbuN2BbRgWLN4dosd9tGHaFJCFBZYe3x4+Pl9V/v0SpUd5T5+ThIpFK7ywWWMV1ZTe1y7mfFx0+61EXzbn0DE32oP229xUvOGj/qlNQj9pJ8nQhxZmshonzwiH+HwWufSVmmUYWw/IrPhilDJXssxT/9eI/5IUcvxHLVdaiOy48SXQ8GhLfRgEOr881EB1PHzopILH0YlYKBYHmziKddWUqOMWajMIm7PLLdYejV4e8A9NNmOl0HgX62xEO5KEaMujDBTR0NJdXI6PWMdri63Ib2E0FnLAloa9UjnjyehvNdA7eKdLEUaPHjJRVOGhXoRy0J+oBEQVnvCp/wEtr3r+zwMAAA==", "encoding": "utf-8"}, "headers": {"X-XSS-Protection": ["1; mode=block"], "Content-Security-Policy": ["default-src 'none'"], "Access-Control-Expose-Headers": ["ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval"], "Transfer-Encoding": ["chunked"], "Access-Control-Allow-Origin": ["*"], "X-Frame-Options": ["deny"], "Status": ["200 OK"], "X-GitHub-Request-Id": ["B580:3FAB:52E818:B40A9B:5B605829"], "ETag": ["W/\"ef248d21c37e005a30a4c5e05b46f3fd\""], "Date": ["Tue, 31 Jul 2018 12:38:02 GMT"], "X-RateLimit-Remaining": ["57"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "Server": ["GitHub.com"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-Content-Type-Options": ["nosniff"], "Content-Encoding": ["gzip"], "X-Runtime-rack": ["0.069502"], "Vary": ["Accept"], "X-RateLimit-Limit": ["60"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Type": ["application/json; charset=utf-8"], "X-RateLimit-Reset": ["1533043716"]}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/requested_reviewers"}, "recorded_at": "2018-07-31T12:38:02"}], "recorded_with": "betamax/0.8.1"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:29:22 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"6f05a645f445cb65d4baed0f2c6f5dd60afa1b630f4a5d2da3b2fd6acb55f495\""], "Last-Modified": ["Sun, 31 Oct 2021 15:27:37 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["43"], "X-RateLimit-Reset": ["1635696978"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["17"], "Accept-Ranges": ["bytes"], "Content-Length": ["3115"], "X-GitHub-Request-Id": ["C69C:66AE:3554D65:664F99D:617EB651"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873"}, "recorded_at": "2021-10-31T15:29:22"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/requested_reviewers"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA6tWKi1OLSpWsoqO1VEqSU3MBTNrAZcdCeYXAAAA", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:29:22 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"eebd7c14e85fe3c20c5c944d0f898a88d9f185a1bc9699c89b12d13fcb39e082\""], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["42"], "X-RateLimit-Reset": ["1635696979"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["18"], "Accept-Ranges": ["bytes"], "Content-Length": ["39"], "X-GitHub-Request-Id": ["C69C:66AE:3554D80:664F9C6:617EB652"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/873/requested_reviewers"}, "recorded_at": "2021-10-31T15:29:22"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_single.json b/tests/cassettes/PullRequest_single.json index 562522fcf..4671c5f5d 100644 --- a/tests/cassettes/PullRequest_single.json +++ b/tests/cassettes/PullRequest_single.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235", "method": "GET", "headers": {"Connection": "keep-alive", "Accept": "application/vnd.github.v3.full+json", "Accept-Charset": "utf-8", "Authorization": "Basic ", "Accept-Encoding": "gzip, deflate", "User-Agent": "github3.py/1.0.0a4", "Content-Type": "application/json"}}, "response": {"status": {"code": 200, "message": "OK"}, "body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235", "headers": {"X-Content-Type-Options": "nosniff", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Server": "GitHub.com", "X-GitHub-Request-Id": "8BA4:551B:1DCAD86:2588A5E:58A08C86", "X-RateLimit-Limit": "5000", "ETag": "W/\"13bb58c66e8ff20129e843574cfcf08f\"", "Cache-Control": "private, max-age=60, s-maxage=60", "X-RateLimit-Remaining": "4997", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "Content-Type": "application/json; charset=utf-8", "Status": "200 OK", "X-Frame-Options": "deny", "Access-Control-Allow-Origin": "*", "X-RateLimit-Reset": "1486919865", "Content-Encoding": "gzip", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "X-Served-By": "9e60649f02cd840ee8baa9960690f79f", "Last-Modified": "Wed, 08 Feb 2017 02:05:35 GMT", "Content-Security-Policy": "default-src 'none'", "Transfer-Encoding": "chunked", "X-XSS-Protection": "1; mode=block", "Date": "Sun, 12 Feb 2017 16:25:42 GMT"}}, "recorded_at": "2017-02-12T16:25:42"}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["Basic "]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:23:00 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"f72c03b1024568eec3262f551682e466fc6f45b7db74d50f51746dca0fd5b1db\""], "Last-Modified": ["Sun, 01 Aug 2021 08:10:10 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["58"], "X-RateLimit-Reset": ["1635697315"], "X-RateLimit-Used": ["2"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["AAE4:0E7A:8A65DA:1C6EC8D:617EB4D3"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/235"}, "recorded_at": "2021-10-31T15:23:00"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullRequest_update.json b/tests/cassettes/PullRequest_update.json index 84edac6c7..505d04236 100644 --- a/tests/cassettes/PullRequest_update.json +++ b/tests/cassettes/PullRequest_update.json @@ -1 +1 @@ -{"http_interactions": [{"response": {"body": {"encoding": "utf-8", "string": "", "base64_string": "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"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2", "headers": {"X-RateLimit-Remaining": "4994", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "Date": "Sun, 12 Feb 2017 16:31:44 GMT", "Content-Security-Policy": "default-src 'none'", "Last-Modified": "Sun, 12 Feb 2017 16:17:45 GMT", "Access-Control-Allow-Origin": "*", "X-XSS-Protection": "1; mode=block", "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "X-Content-Type-Options": "nosniff", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "Transfer-Encoding": "chunked", "Content-Type": "application/json; charset=utf-8", "X-Served-By": "4c8b2d4732c413f4b9aefe394bd65569", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Server": "GitHub.com", "Content-Encoding": "gzip", "X-RateLimit-Reset": "1486919865", "X-RateLimit-Limit": "5000", "X-Frame-Options": "deny", "ETag": "W/\"482baa8d3e91aa72c353d4d5d4d834ae\"", "X-GitHub-Request-Id": "9428:551B:1DCFF02:258F49F:58A08DF0", "Cache-Control": "private, max-age=60, s-maxage=60", "Status": "200 OK"}}, "recorded_at": "2017-02-12T16:31:44", "request": {"body": {"encoding": "utf-8", "string": ""}, "method": "GET", "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2", "headers": {"Accept-Encoding": "gzip, deflate", "Content-Type": "application/json", "User-Agent": "github3.py/1.0.0a4", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Authorization": "Basic ", "Accept": "application/vnd.github.v3.full+json"}}}, {"response": {"body": {"encoding": "utf-8", "string": "", "base64_string": "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"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2", "headers": {"X-RateLimit-Remaining": "4993", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "Date": "Sun, 12 Feb 2017 16:31:44 GMT", "Content-Security-Policy": "default-src 'none'", "Access-Control-Allow-Origin": "*", "X-XSS-Protection": "1; mode=block", "Access-Control-Expose-Headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "X-Content-Type-Options": "nosniff", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "Transfer-Encoding": "chunked", "Content-Type": "application/json; charset=utf-8", "X-Served-By": "e183f7c661b1bbc2c987b3c4dc7b04e0", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Server": "GitHub.com", "Content-Encoding": "gzip", "X-RateLimit-Reset": "1486919865", "X-RateLimit-Limit": "5000", "X-Frame-Options": "deny", "ETag": "W/\"482baa8d3e91aa72c353d4d5d4d834ae\"", "X-GitHub-Request-Id": "9428:551B:1DCFF0D:258F4AF:58A08DF0", "Cache-Control": "private, max-age=60, s-maxage=60", "Status": "200 OK"}}, "recorded_at": "2017-02-12T16:31:45", "request": {"body": {"encoding": "utf-8", "string": "{\"title\": \"Update test\"}"}, "method": "PATCH", "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2", "headers": {"Accept-Encoding": "gzip, deflate", "Content-Type": "application/json", "User-Agent": "github3.py/1.0.0a4", "Connection": "keep-alive", "Authorization": "Basic ", "Accept-Charset": "utf-8", "Content-Length": "24", "Accept": "application/vnd.github.v3.full+json"}}}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1bW2/bOBb+K4FeN4ks+W6gmO0gmaILJEFnMoNsFwuDoiiLjSxpRcqpI/S/zzkUdbHixnHoh30QkBY2TX48OjrkuXxkYeVZZC2sUMpULGybpPxyxWWYe5c0WdsZSxNhlw3DdGv7LGKSLWkSSxZLYad5FAnbtc4t7lsLZzCezoez2ezcihOfLbHNurm6/n4X/ep4n77/8fXhN+frw+3g5v6jc/v8+Hx3tRrB2FCuo+WuHC0ZXp9dTe7zIHg/wCUOB5SUSBoawKjxqAohctbBOVKvCqJUbJyvPZZZC/fcEpJIBipNUhbDPFFCHxmoOCCRYOeW5DLCX/9Mfeh2JpmQ0CkXOLiAzisew6+Cr9Zkw7NcuKh6fEXuaDAbDnbf2ZfJXw+3Ef32eXBztXq++fjhA3QmGyJJ1n0y1Si01eB02jqUAeV2if7L5gNOt8o0hjINFO8160MwYXckft1YOp2DJIqSJ0DpCr1r5i8nsuuRIGT5mcerd6LAyMJOZMhAd/BIP1ARXMjjhVKjCliPQsLiQhwwiSxj/tGC6XEg1lMMEhVqpSvA3BM046nkSXy8gDujAS3JViTmz+R9aDBaAIjahI5+QjUKRrMN7lRHDy+HFXaa8Q2hW1RNxijjG1D2OyE74wFRblO1YnGNguo5bK3EX+M6VWv6x7nlJf7WWsSwzZ5bNGOwsP0lkTDGHTjTi4F74bj3zngxcBaj8VfAyNXir/u4zoUzuBg62Med6T40SoTuUgKvWbZ62QC7/HrN5VKEBOYbu4Sx2djzKBmS0WTiTv3hyKMzOgn80YTM3IDO53PHBxmIgFUYM3iyEr76LqzFf/6Lavwf7G0oZMY2nOHq7P4gGVnrxoh4LNKf1zyCgUlcI/sZCUAZegMs5T3wqt/o0WwNpl47Sqm0cdiSjoFHtBf4rxvq2+ArUQu7dB5ovKcRv/JLSj1afvRKsK0Z6r1CsUd+4MzH/nDsOmDj1JuT8WwypN7MYY7jBIQE3pRNxhN4ppARcCPg29BGwEbrSGGBzu9C2flFCuaFLzGADi+aS9s+YsquO62nhDlUCDSduc540gmAtneP8+1X97ecPKSh/ynaeN+uh3dXn7/f3v/73Y5VT2XgWdvCv+5W2z2P8qlN8PZuh9qFMPGmDZaRK21gTudHW5htFwx2dbQTbaCO9aDNyOPdZzP2NL6zLcuO4wWVaMd51wovoHWfA8XnwD0CF+d4MJpN3G6oe/10F/0rop/mz+Th9w2NH52bqy+j22+fq7A3Jmv00p3cB+YLwC0v9a+NtC/7qRgCI3ftqFTM1Q7K68H9LtJJlMrIvFFuv4v8LFXvaso4FO93kSYMf6N37NZHYDn7rE6nYA+5D7k4gz/J1mmSkYxH2zN4cf6Ztz3T+r5Mt2dBkp1xKLFAuoyZk8rlwe3hlpNkj/U+8mryfCBU1FiGURuKg+HVI9saIiFCYcP/OrGlkLkTD3Qkk0PZ+4EnhVi1BVXsfMXIWCUbZmF3ma9AQJokj4ZQCgLdgCoivSXTPPT4OmavnHKTEpwCvMQAeeskz0yTNUxhV6USLyMxDU3ziwqlsMtP6s2TleHbQgQA8qLEM0SC1W8rmMKGpKQsEcmluYSIiyg7sJANnUBcRKlhZcZMX5ESFWFq0BOnloXWbETiVU5WpvLWMGABmAesyPPBSuOhxdrgACgWUjPu5afYAhsklLbMMKCubGgGLaAGVtUOzbaBdvCiFIGVKENZNcjOQjgJMNptF/w05ZZ9hZzSMehfzLSsPcO+WSqGx2yCmicq/gHkSKjrUCnJDOkRkBhB7MIjUCW9vLwssBSE8KqUaWgoJQaAkYyGUPA100FRoUCstCZSldoDFNWHNDBKiG8obQ0DkOULNZO3xGiXDhXJZwaqINqYdSnXELjBaaPHieQBp2+hHQ5tyDtQxS+Cx5SdEyjHgwFKTjnYNUTm+D7LSrWZnkoMeBQoOSBmBnwrmLihkiqUwi5JI5+lUbI9QTW7BYS7dIefmFwMnAt3ej+YLJzJYjTZw084+/qkuQhbNMcMYQbje3e4GIzgD2Fgy9WKhk9AW5e5k2IcdRr1kqxGhhKGClFxvPD9n83AxaGBUE6Ou3vBMfNuuj7xLYNB4DBZsxSilYpOEfwZPo92Yg6a5DEQIUDiPiEJjX69aarilAogJGJZrnJrIbMcqGNsSbPkG6PASLTamr2l1fjEH/nOQIykqgaVELbmXvMsSzRlrNmgclOFcpyuhvlcEC9qEdlIb2sBKyQXlhenLBYNqYTE7hKnw8RYi8fFEjPrqF1sk0nKqSaQNlxwj0dcAqdmpbkHmKDgMolF5bVmVoR7pUylWZ8FJI/ksswfAGBNgMXKrB9I08Ei3c9E6E4VA1F/LZmH6XTmAas4mk9mfjCceGQ6nAfDwKHjgTegdDafzulwQglI2TMPmoc/GLR2K2F9zbCvGR7F2jee4KeUfc889PzlGw8ENdZUnyN692mgBqvnL/cd4Wqv3GOP/zRj/5/4y555yL19J0975kEdwO2Zh555MKwOwL7XMw8989AzD2pD7ZkHpYZ9nEDPPCi99MyDvvzTMw/qMPoOr9EzDzv3w3rmAXfTnnnQN0F65uHkzMMy4jEcGIMTzoJFcMehsMLyroPhjU4gNbD0sAfwLbSVuhgKVzMBRUUNe2DeeyMSIKvg5HSodbyDEncu/JjPom/JvjLJqeZ4GbZpdcHpmVPN4VaHXVBX1Qktc/DjLwAh8UZyGQK/CMcGE8oV3w/E3M31za/XvwNnBr8mS3Wco+I+8T7dsjTsko5UDZJ9B/ZU85NU4pkPvFwLF9SIQMT2Nbmat1S4yFxW7GPGkAZst9Rdlvh00NGiwOfj3V195c5rLvdVF6qQanxhgUMYQeBEMPyDS6SUxMt1AreWYfTu3Te4gARP7ftcXbhU39R1hPobDeHsG5AhAV6lg99//A2tT4aQAT4AAA==", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:32:11 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"354b599e828abab0a2e8effe63bdf3bf79e686e34891943c1d38dead3148db1f\""], "Last-Modified": ["Sun, 31 Oct 2021 15:28:45 GMT"], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4990"], "X-RateLimit-Reset": ["1635696820"], "X-RateLimit-Used": ["10"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["AAE6:501A:290ECF3:78C96BE:617EB6FB"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "recorded_at": "2021-10-31T15:32:11"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"title\": \"Update test\"}"}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Content-Length": ["24"], "Authorization": ["token "]}, "method": "PATCH", "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:32:12 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"4239dc034be4a18879c23932baf0e9a954d2314c3f942d11a2602bc8bae6acaa\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4989"], "X-RateLimit-Reset": ["1635696820"], "X-RateLimit-Used": ["11"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["AAE6:501A:290ED08:78C9701:617EB6FB"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "recorded_at": "2021-10-31T15:32:12"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/PullReview_submit.json b/tests/cassettes/PullReview_submit.json index c96b9ce48..02bffbf0f 100644 --- a/tests/cassettes/PullReview_submit.json +++ b/tests/cassettes/PullReview_submit.json @@ -1 +1 @@ -{"http_interactions": [{"response": {"body": {"string": "", "base64_string": "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", "encoding": "utf-8"}, "headers": {"Cache-Control": ["private, max-age=60, s-maxage=60"], "Transfer-Encoding": ["chunked"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Reset": ["1522432671"], "Status": ["200 OK"], "Content-Encoding": ["gzip"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding"], "Access-Control-Expose-Headers": ["ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval"], "Date": ["Fri, 30 Mar 2018 17:07:13 GMT"], "X-Accepted-OAuth-Scopes": [""], "ETag": ["W/\"b9161615c0867cb5d8e637433646609c\""], "X-Runtime-rack": ["0.159841"], "Content-Type": ["application/json; charset=utf-8"], "X-Content-Type-Options": ["nosniff"], "X-GitHub-Request-Id": ["E4FD:268D:48180E:5B39D4:5ABE6EC1"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "X-OAuth-Scopes": ["repo, user"], "Access-Control-Allow-Origin": ["*"], "Server": ["GitHub.com"], "Content-Security-Policy": ["default-src 'none'"], "X-Frame-Options": ["deny"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Last-Modified": ["Fri, 30 Mar 2018 17:07:01 GMT"], "X-RateLimit-Remaining": ["4993"], "X-XSS-Protection": ["1; mode=block"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"]}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819", "status": {"message": "OK", "code": 200}}, "request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Authorization": ["token "], "Accept": ["application/vnd.github.v3.full+json"], "Accept-Charset": ["utf-8"], "User-Agent": ["github3.py/1.0.2"], "Accept-Encoding": ["gzip, deflate"], "Content-Type": ["application/json"], "Connection": ["keep-alive"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819"}, "recorded_at": "2018-03-30T17:07:13"}, {"response": {"body": {"string": "", "base64_string": "H4sIAAAAAAAAA51UW2+bMBT+K5X3msXlskCirpV20dSXdKrSZ+TgE7BqMLMNaYby33cMqEpRlY482bLP953vXFsiOFl513EQxfH1YkZqA5qsWiJVJkqyIiAhtVrtQIoXMuusl54f+OGMsIZZppNaS7TLra3MitL+0XjzTNi83jq6VJUWSjtPVUFr2qPvmq8h0mV6IHG8BB9GZJUYeHowkhk6UpTbQo409K47yMh4p6RUe2QZq/7IEX1Fosj+LsrsQhZEtlTZHDB5GNLRJUIYO11Uh2qpOxLBHY/Bimjgk4UNOJS1L1FRSzVUqiOstybVorJCldMFvkEjm9IZK8Vfdhkbog2SOGnTpXQoREODvTgd3sNaWmnRsPTgUqMhBdFgsi+kHOGR0R4qwDl4cjOIqRcWEsYLN4c7Jg0cZ2Sr+AEtNmAsdtEV5rcQ9kpDI2Dfl986ht8/1z/u17/w5fx4GJEVrBG6Nn6IbeQmNphXB1rVUtLYW35yFw1/avTXO/n8uiuQ3P0mw/f5luuyT8+5M84fcrLa5konzBiViq5RMJ7vD+vN4/23p83DI5okUpTPxm0pF113atidLKGTBXDO5YcRYsJPQ3zHE3u7OP43zONQyqQPgNxUt++W9IZWtxiwq3pi4cWeKT1uO2wFXANo8yXiYcwh9DhfRD5AvFxyP+Ie8NCLIPKiYLENeOCT4z+qlLb0AAYAAA==", "encoding": "utf-8"}, "headers": {"Cache-Control": ["private, max-age=60, s-maxage=60"], "Transfer-Encoding": ["chunked"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Reset": ["1522432671"], "Status": ["200 OK"], "Content-Encoding": ["gzip"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding"], "Access-Control-Expose-Headers": ["ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval"], "Date": ["Fri, 30 Mar 2018 17:07:14 GMT"], "X-Accepted-OAuth-Scopes": [""], "ETag": ["W/\"b7e154f3ea4fa1c1c935b44ee91ec6c7\""], "X-Runtime-rack": ["0.144380"], "Content-Type": ["application/json; charset=utf-8"], "X-Content-Type-Options": ["nosniff"], "X-GitHub-Request-Id": ["E4FD:268D:481823:5B39E8:5ABE6EC1"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "X-OAuth-Scopes": ["repo, user"], "Access-Control-Allow-Origin": ["*"], "Server": ["GitHub.com"], "Content-Security-Policy": ["default-src 'none'"], "X-Frame-Options": ["deny"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Remaining": ["4992"], "X-XSS-Protection": ["1; mode=block"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"]}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819/reviews", "status": {"message": "OK", "code": 200}}, "request": {"body": {"string": "{\"body\": \"Testing submit review\", \"comments\": []}", "encoding": "utf-8"}, "headers": {"Authorization": ["token "], "Accept": ["application/vnd.github.v3.full+json"], "Accept-Charset": ["utf-8"], "Content-Length": ["49"], "User-Agent": ["github3.py/1.0.2"], "Accept-Encoding": ["gzip, deflate"], "Content-Type": ["application/json"], "Connection": ["keep-alive"]}, "method": "POST", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819/reviews"}, "recorded_at": "2018-03-30T17:07:14"}, {"response": {"body": {"string": "", "base64_string": "H4sIAAAAAAAAA51UXW+bMBT9K5X3msQYWCGo66RtfdhDW6lKX/aCHHxDrDmY2YY0Q/nvu4aoSlGVLnmyZd9z7rmfHZGCZCxIoyRNg+sJaSwYknVE6VJWJCOgoHBGr0DJFzLprecsjMJ4QnjLHTd5YxTarZ2rbUbp8GjZrJRu3Sw9XaErB5WbFXpDGzqgv7ZfYqQrzYHE8xJ8GJHV8sAzgJHM0pGitduokYbBdQ8ZGa+0UnqLLGPVHzmir0gUOdxlVV7IgsiOarcGTB6GtPeJkNadL6pHddQfuRSex2JFDIizhR1wKGtboaKOGqh1T9gsbWFk7aSuzhf4Bo1s2pS8kn/5ZWyItkjipZ0vpUchGlrsxfPhA6yjtZEtL3Y+NQYKkC0m+0LKER4Z3a4GnINnP4OYeukg52Lj53DFlYX9hCy12KHFAqzDLrrC/G6kuzLQStgO5Xee4fvj/f3dw+LuB76dHhAryw1vpWlsGGMj+ZmNZvWO1o1SNGXzT/5i4E+DHgc309dtgeT+Nz98n266Pv/0lDvr/SEnb9xam5xbqwvZt0of0cPi6ee358XjE5rkSla/rd9TPrr+NLA6WkNHK+CUyw8jxJQfh/iOJ/52dfxvmPtDMfMhAHJT375b1Bta32LAvu65gxd3qvh9MzhsSO7NwoCl0yCaRsGCJVmQZCz+hUy4FdEK1wWafE5EnAqImRDXSQiQzuciTAQDEbMEEpZE18tIRCHZ/wNZ5vLVKAYAAA==", "encoding": "utf-8"}, "headers": {"Cache-Control": ["private, max-age=60, s-maxage=60"], "Transfer-Encoding": ["chunked"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Reset": ["1522432671"], "Status": ["200 OK"], "Content-Encoding": ["gzip"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding"], "Access-Control-Expose-Headers": ["ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval"], "Date": ["Fri, 30 Mar 2018 17:07:14 GMT"], "X-Accepted-OAuth-Scopes": ["public_repo, repo"], "ETag": ["W/\"3604c8a0f5031e9435c14a6be6fa868a\""], "X-Runtime-rack": ["0.246180"], "Content-Type": ["application/json; charset=utf-8"], "X-Content-Type-Options": ["nosniff"], "X-GitHub-Request-Id": ["E4FD:268D:481834:5B39FC:5ABE6EC2"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "X-OAuth-Scopes": ["repo, user"], "Access-Control-Allow-Origin": ["*"], "Server": ["GitHub.com"], "Content-Security-Policy": ["default-src 'none'"], "X-Frame-Options": ["deny"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Remaining": ["4991"], "X-XSS-Protection": ["1; mode=block"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"]}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819/reviews/108378806/events", "status": {"message": "OK", "code": 200}}, "request": {"body": {"string": "{\"body\": \"Testing submit review\", \"event\": \"COMMENT\"}", "encoding": "utf-8"}, "headers": {"Authorization": ["token "], "Accept": ["application/vnd.github.v3.full+json"], "Accept-Charset": ["utf-8"], "Content-Length": ["53"], "User-Agent": ["github3.py/1.0.2"], "Accept-Encoding": ["gzip, deflate"], "Content-Type": ["application/json"], "Connection": ["keep-alive"]}, "method": "POST", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819/reviews/108378806/events"}, "recorded_at": "2018-03-30T17:07:14"}], "recorded_with": "betamax/0.8.1"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:38:49 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"2d81efda6dec565b68ac90273f191208b2192b0eaaae7f2c0c89ef10a5c82cff\""], "Last-Modified": ["Sun, 31 Oct 2021 12:22:14 GMT"], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4988"], "X-RateLimit-Reset": ["1635696820"], "X-RateLimit-Used": ["12"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["93DC:5D9C:D9980E:1C85FA8:617EB889"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819"}, "recorded_at": "2021-10-31T15:38:49"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"body\": \"Testing submit review\", \"comments\": []}"}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Content-Length": ["49"], "Authorization": ["token "]}, "method": "POST", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819/reviews"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA51VXW/aMBT9K5Un7YnhkAQSUOlUiWrqQ2mH2nVvkWM7wWuIM9sJpRH/fdcJqiDq2gIviWKfc+65X9RIMDQJxl7guV7g91AuGY/sN3S3WERP69nt5UzwcehX9+7DI+qhUnOFJjXKZCpyuKZFuiKVUKV2fTi2UNd3Qs/Z57qZ/Rz9+j3P6J9r52aWvtxcTqdwmVTEEBWVKgOipTGFnmDcftT9VJhlGVs5KnPDc9OncoVL3LJ/L6c04QFjlNJh6HphzFnsD4JRkrgkZDF1HYeOiDfw2ddqaiNL1U6ucWedHMoWYifZ6oCuxh1zS7PKOtG2UTaQzuVEZplcA0vX30dC+BUJQbbvIk9PZAFkjaVZckgzWNraRAhtjg+qQdXYPqA/LI+G2inOjg5sh4Ow1jlEVGPFC9kQlrGmShRGyPz4AA/QwCZVSnLxQk5jA7QGEhva8aE0KEDzCtr2eHgLq3GhREXoxqZGccpFBck+kbKDB0azKTjMwYMdZ0i9MDwibGVHOiGZ5tseiiXbwI17rg100RnkdyXMmeKV4Ou2/MYy3F3NZ9fzH/Dl8+MBbWSH2+sXG1yUWYbDwfiLfVH8bwl6rci3170E5PY02h2/33JN9g+msSunrR5wktIspYqI1pKKplHAz+3j/GoBh1Em8idtV5311TwVT/YW1X9Gvyv2oTdI9b65N5TI4cr4rMHtrohRawCdFxdvFvMcFxdg2NY7MvzZvFN02HPQBO0fRMBi7vqxT/0wGcYJC+JRQkfwGwawfBPK44SETuCh7T9vyYLyZgYAAA==", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:38:50 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"00a11825fe40fce6d0c812137b6ec13e0c7a9230399d0640be12994dca009373\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4987"], "X-RateLimit-Reset": ["1635696820"], "X-RateLimit-Used": ["13"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["93DC:5D9C:D99824:1C85FCA:617EB889"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819/reviews"}, "recorded_at": "2021-10-31T15:38:50"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"body\": \"Testing submit review\", \"event\": \"COMMENT\"}"}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Content-Length": ["53"], "Authorization": ["token "]}, "method": "POST", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819/reviews/793732374/events"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA51VXW/aMBT9K1Um7QlwviABlU7V4GEP0A3RddpL5NhO8BrizHZCKeK/7zpBFURdW+AlUexzzj33i53FqTUKhl7guV7gd6xcUBaZb9b3xSJ63EzubiecDUO/Wrr3D1bHKhWT1mhnZSLlOVxTPF3jistSuT4cG6jr26FnH3PNJj8GP3/NM/Lnmz2bpM+z2/EYLuMKayyjUmZAtNK6UCOEmo+ql3K9KmMjR0SuWa57RKxRiRr2L+WYJCyglBDSD10vjBmNfScYJImLQxoT17bJAHuOTz9XYxNZKg9ytTvj5FS24AfJRgd0FWqZW+l11oq2ibKGtC4nIsvEBlja/t4TQi9ICLJ553l6IQsgd0joFYM0g6W9SQRX+vygatQOmQf0h+FRUDvJ6NmBHXAQ1iaHiHZIskLUhGWsiOSF5iI/P8ATNLAJmeKcP+PL2ACtgMSEdn4oNQrQrIK2PR/ewHaokLzCZGtSIxlhvIJkX0jZwgOj3hYM5uDejDOknmsWYbo2I53gTLF9x4oF3cKNJVMauugK8rvm+kqyirNNU35tGL7ezWbT+XI6gW8fHxBoJDPeXq/YoqLMMhQ6w0/mRbK/JSg2Mt2XzQTk5jQ6HL/ddHX+T+axLaeMHnDiUq+EjLBSgvC6VcDR3cN8uoDDKOP5ozLLzviqn5IlR6vqP8PfFnvXGyT72NwrSvh0aXzU4P5QxqgxYF0XN6+W8xoVN2DYVDzS7Em/Vfa6DTS0IjbXXNt1uo7d9Zyl0x954ahv/wYm2Idwq/kjCWjMXD/2iR8m/TihQTxIyAB+/QCWdEJYnODQDjxr/w9SprzLjgYAAA==", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:38:50 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"86fad3960c701879307f3aae83fa6d27a518617c15141036b0036c783380cca7\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": ["public_repo, repo"], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4986"], "X-RateLimit-Reset": ["1635696820"], "X-RateLimit-Used": ["14"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["93DC:5D9C:D99838:1C85FED:617EB88A"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/819/reviews/793732374/events"}, "recorded_at": "2021-10-31T15:38:50"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/RepoCommit_associated_pull_requests.json b/tests/cassettes/RepoCommit_associated_pull_requests.json index 9b93c4718..b3acb302c 100644 --- a/tests/cassettes/RepoCommit_associated_pull_requests.json +++ b/tests/cassettes/RepoCommit_associated_pull_requests.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/1.3.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA62Y8W/aOBTH/5WIX3anY4SQQttI1a7Sqq0nrd1t3N3UX5BJDPGaxJHtwCDq/76v7QABadDW98MYpH4ff/3s9/L86g5LOlF4HvTPg6DbKXhCJ/pJ59P7m+V99lcWf7hck29fFnHxuL5b3yzx70cHA0lOMWrOVFpNw165wrNZlWWT5g+SzXOyYKKSgzN/b1Qp2IIoGM9IJmm3w5cFFZ2o7mR8zgow26agajWDs/5F2N+X9/fo3293Wfz9tv/p/Xz96frqCoMJ0ERMKpEBlCpVysj37UMZ9qyOSlIR80LRQvVinvuVb/HvFldnQMxFAzFuwIMDWMkajjUGTPoHklOVZwca7NTG5GDwjGcZX4JyqPrURP7WUvveUFgxfyUFlrXPVUrhPCzpSTuCSfVyUcaqxpZLhYOkORI7ImjyYmGNHWTpE/JU+4KW3ACrqYwFKxXjxcsF7lmDxsWcFGxNXkeDtQRES3u5FGMFa7rAWXy5uTWrfRNR8Uq7RtCYsgWc/UrkgT2IalXqQP8Hh0K7nik6IUmuA9XE71MXYfbc076fCBK63UVM8JF1vds3uUe8jE0FEStvxoXHEKaCxArH01si13gfbtXHavpGel9uvo6968+3GAIbxDN8yOBGjxSJR8WcFzxnsbckq5536y25ePR44X1eqRT/DXrnXS/snemPof4YdY1d2Dv3ftNfcrKaUvy8ePc7Vg0lj9t8dTQdmB3di/D9NWvSiY0+ikDMAwBJj3TlxNH2tY/PJkhj5A8y5YIofioTHRe4B6r99k99QBUluZNwAwAo5dzNkwYAEJOyos+Kl+MLNxzpb4KyqPKpzaPPCcXjaEuAViLx8igodfLgFlL7m1SPgCvi1A27YdS+/WZ2m8ydpGp7YKYZnzpx8Pb1DaT2ZUrsy01NXNVpqmbsQQWdOUvVjC1UCcf9NjI1ZIvEm1Vh6510bhh+3Xg0I8W8InM36haCXdfv/zlZn6yMjsfOjgKkLvsEm1buSW7H0UptQYJ4d3PpDrODmirneO10wgGtasm4IM/ZqWLjOLFB7B37/wGrz+khWv8+XRudlqsZtb/LyTbpN3QX7zZZf6OzPUdzx3A6EhuGX/9REpXqzIWpSiKoi+gG4ddTggqu1+vVKSWmVs9ROblFsCUARUScohR10VlvGKh6cqLMFWCmZSa4EmScJE6+3UIAtNvootUS2vtf4jrsJNAA2sScZVQqXjju0JbSZhdcsRmLn3MNOh5ue6D6nWRFTLsky7o4tYrFDOcY1bzeRRSc1M1DloBloBthrz8ZxZF28rqgllH79vqa0DLjK+cs1MLoIBYUPZBkQhSuPoN+MHjbD98G4Ti4jIYX0TB8wJiqTNpjBn09pn85DoZReBEFl3pMWcl0h9FDgreDYDwIoiCMBiM9BGm1Odf4hm7ILzoRrXuK7m/AUMp0Z/jnziz6RW+nMYszHNCDSHr+nIvDd91pU0hNeU5L1B6tpo+1C3twdIK2RsJj2WNcL4utMW44OB+d7dUYMa8K7MblEI+XRKEcxtu8/XBTm2ASe43UExM5sZHfiZSo0M7ST0rBv9NYyfazXbZpDVyyR7a9WBpLXUBtn9jbYqMhHI2Qn5kQvOlvFUgP2zSLXlXTT0uYJNOM7h7wkhaNyM16LkJEH4tpIeGKWl8msSjT/cGamg7effNTlskP2xK8u7/++vXmy/j2/k4fT91jsxraXcN4NP6QfX/4b7h+GF9fddAfsFfWyOhvaelEWsXG043jEzojVaYm9goBUTmR6ABgOkXzcmLPluKPFP2HZm6q9OV+szIzS7se23gvePoJ0nMRZ+sUAAA=", "string": ""}, "headers": {"Date": ["Thu, 12 Mar 2020 08:50:20 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Server": ["GitHub.com"], "Status": ["200 OK"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["45"], "X-RateLimit-Reset": ["1584005488"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"a968b7af3051b6e611f2ee992a81a678\""], "Last-Modified": ["Mon, 09 Mar 2020 15:38:19 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["1; mode=block"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["B812:8D92:1818D10:1C4AA60:5E69F7CB"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py"}, "recorded_at": "2020-03-12T08:50:20"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/1.3.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/commits/6b12e37bdc1bea465f04a53262194ab332711ee8"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Date": ["Thu, 12 Mar 2020 08:50:20 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Server": ["GitHub.com"], "Status": ["200 OK"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["44"], "X-RateLimit-Reset": ["1584005488"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"2441b6765e8f27a4cff9ca706e6fc03b\""], "Last-Modified": ["Wed, 21 Nov 2018 14:06:36 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["1; mode=block"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["B812:8D92:1818D5B:1C4AAAD:5E69F7CC"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/commits/6b12e37bdc1bea465f04a53262194ab332711ee8"}, "recorded_at": "2020-03-12T08:50:20"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/1.3.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.groot-preview+json,application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/commits/6b12e37bdc1bea465f04a53262194ab332711ee8/pulls?per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Date": ["Thu, 12 Mar 2020 08:50:20 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Server": ["GitHub.com"], "Status": ["200 OK"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["43"], "X-RateLimit-Reset": ["1584005488"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"436269401f53e152a8145901b2612da8\""], "X-GitHub-Media-Type": ["github.groot-preview; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["1; mode=block"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["B812:8D92:1818DD9:1C4AB37:5E69F7CC"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/commits/6b12e37bdc1bea465f04a53262194ab332711ee8/pulls?per_page=100"}, "recorded_at": "2020-03-12T08:50:20"}], "recorded_with": "betamax/0.8.1"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA62YbW/bNhDHv4qgN31Rx7KjxEkNBF2ABm0GNOnabCs6DAYl0RYbShRIyq4t5LvvT1GPBmon1V4kkRjej8fj3el4hcsid+5fTCcX0+nITUVEF2bE/fjuZnPPf+fh+zc78vXzOkwfd3e7mw1+friYSBKKWSum4zzwx9kWY8uc80X1D8VWCVkzmavTM683K5NsTTSEl4QrOnLFJqXSnRcuFyuWgtkVBdVoc3o2ufQnffX+mP319Y6H328nH9+tdh+vr64wmQBN5CKXHKBY60zNPc8OqrFVI1dUhiLVNNXjUCRe7ln62/XVGQgrWTFKK2Bgj5WximOFAVPensaxTvieCnbpUmRv8lJwLjag7Ct9bCGvkTSmLyksXf0iBZKFJ3RMYTts6ckYgin9cqVKqQInrjT8yHAUDkTS6MWKVXJQyzjIU+FJmokSmAcqlCzTTKQvV7AnDZqQK5KyHfk1GqQVIEa1l6tSSkGaruGLLxe3YoVXBlS4NaaRNKRsDWP/InJPHkS9zUyc/wmnMKZnmi5IlJg4LcP3aYQoe6639/NARJtTxALOBzZybl8lDnE4CySRW2cppMMQp5KEGv7pbJBrnPe3+kMevFLO55svD871p1tMgQwCGkZksKND0sihciVSkbDQ2ZDt2Ll1NkI+OiJ1Pm11jD/+ePZ6jP1giccmER0M9PKserHb340hHTnCgwhEMwBQ6ZFuB3GMfOHhdxV+ITIDCYQkWhzLMYcV7IEKr/tqXE9TkgxSvAQAFAsxzJIlACCmVE6fFQmHN15ylFeHW5ongc2Qzwmyw2hLgK5E4bOQUjrIgg2k8OokjkhKw3gYtmYUnn0qT5usBqlq5IEJuAgGcfBd9UpI4amY2M+WXgzVzlANoweVdDlYVcNooFoOPO9STQNpkPhmahz9ID1rhldUFuUkXeVkNYzaQHDq5su+IrujNc/h2GkpQJqCTrIgH57kWo7R1JYaiPdhJm0xLbSsXw5XRUcM0KmDShMkCTtWRhwmVoie2/8PWOOn+2jzfrzqOa6uYRRem5Nt0q/oQ6xbZf1az+4a1e1hkEvUDK94nREdm8yFpTIi6RClK4RXBAS12Xg8LmJKyio8QUk0LIItASgiwxhF5hA9i5qBqichuizul0bNCMU+FyQaZNsGAqA9xiG6WkL3/DPccwcpWAK6xIRxqrRIB55QQ+myU6HZkoXPueAcDrceqHirWBrSEeF8BK/VLGTwY5Tp5hRRcNJhFrIEbANtBnux4RQuPcjqklpG4dmLaUQzLraDs1AHY4JYUjQ3ogXRuNScTqanJxP/ZOo/TN/Mzy/n5/43zMmzqDvndHoynZz404fJZD6dzSenZk6Wq7jF9Kacg2SmIK1Wfo0ntDl+0mPo3FNM5wKCSsWt4G+t2PwnTZtKLORw0L1Iev6a6/1v3XFRqBqLhGaoPTrdHCvnj2HoCA2LSIRqzITZFtth3rk/Ozvr1RihyFOcxnQyw/iGaNTD+Jz3RuvqBMvYG6JZmqiFjX13rmWOTpUZyaT4TkOtumNtvulM3LBH1lwtS0lTQjUj9r5YKeFfXiBDMylF1bpKkSCaRIs+VNUqi5giAaftgMhoWilZb+gSbTLOQpoqGKMw10lsquzsYE9Vc+6+elVZ9MN2++7ur798ufn8cHt/ZxzUtM+sDt2GYDh7eM+/f/v7fPft4frKxd0f0S82C7MXRH5tEqYWmiYZ7zb5tMhYiN3/U3UMrfuidXhCMoaXrLyXNw/+rH28aB8v28c3eJTImdWfCmNGTkJu+gDuvyN3zRQLGGfa2CDLA9gF8+1Ne14avWNAd25MV/tH7S8RXZKc64W9+gCTEDQ/zHU3yRY2IrR4pOiHVPai2vQa6tMoF+lWkfWJ+0//AdEV3SR6FQAA", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:35:51 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"777c2e1d4972ad88b3acdde84f1d8575be0f8b642cad0a132e6bdc8ed131bf7e\""], "Last-Modified": ["Sun, 31 Oct 2021 00:16:02 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["59"], "X-RateLimit-Reset": ["1635719751"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["1"], "Accept-Ranges": ["bytes"], "Content-Length": ["1428"], "X-GitHub-Request-Id": ["BE90:33B4:BC4AF2:25C098C:617F0C37"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py"}, "recorded_at": "2021-10-31T21:35:51"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/commits/6b12e37bdc1bea465f04a53262194ab332711ee8"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:35:51 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"c65d5c3a72921e920aecadcc68aa1d6c5c6fe5084bf5c0ac6b8e4bfe68c8b09a\""], "Last-Modified": ["Wed, 21 Nov 2018 14:06:36 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["58"], "X-RateLimit-Reset": ["1635719751"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["2"], "Accept-Ranges": ["bytes"], "Transfer-Encoding": ["chunked"], "X-GitHub-Request-Id": ["BE90:33B4:BC4AF8:25C099E:617F0C37"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/commits/6b12e37bdc1bea465f04a53262194ab332711ee8"}, "recorded_at": "2021-10-31T21:35:51"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.groot-preview+json,application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/commits/6b12e37bdc1bea465f04a53262194ab332711ee8/pulls?per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:35:51 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"aa34a60f29a3f3dd0937a7f86625a113137cc29910d624cec4c9b8eea2a5cbd2\""], "X-GitHub-Media-Type": ["github.v3; param=groot-preview.full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["57"], "X-RateLimit-Reset": ["1635719751"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["3"], "Accept-Ranges": ["bytes"], "Content-Length": ["2731"], "X-GitHub-Request-Id": ["BE90:33B4:BC4B02:25C09D2:617F0C37"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/commits/6b12e37bdc1bea465f04a53262194ab332711ee8/pulls?per_page=100"}, "recorded_at": "2021-10-31T21:35:52"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/Repository_create_pull.json b/tests/cassettes/Repository_create_pull.json index ce5ea7041..0f6236ec3 100644 --- a/tests/cassettes/Repository_create_pull.json +++ b/tests/cassettes/Repository_create_pull.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.drax-preview+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token "}, "method": "GET", "uri": "https://api.github.com/repos/github3py/github3.py"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Wed, 03 Jan 2018 17:11:01 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4995", "X-RateLimit-Reset": "1515002817", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"0a599afe52e4bafa731d3b2c11b78d5f\"", "Last-Modified": "Tue, 02 Jan 2018 00:49:36 GMT", "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; param=drax-preview; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.136075", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "CC9E:7AA2:3B1865:C8624C:5A4D0EA4"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/github3.py"}, "recorded_at": "2018-01-03T17:11:01"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"organization\": \"testgh3py\"}"}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token ", "Content-Length": "29"}, "method": "POST", "uri": "https://api.github.com/repos/github3py/github3.py/forks"}, "response": {"body": {"encoding": "utf-8", "string": "{\"id\":116162347,\"name\":\"github3.py\",\"full_name\":\"testgh3py/github3.py\",\"owner\":{\"login\":\"testgh3py\",\"id\":35038710,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/35038710?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/testgh3py\",\"html_url\":\"https://github.com/testgh3py\",\"followers_url\":\"https://api.github.com/users/testgh3py/followers\",\"following_url\":\"https://api.github.com/users/testgh3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/testgh3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/testgh3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/testgh3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/testgh3py/orgs\",\"repos_url\":\"https://api.github.com/users/testgh3py/repos\",\"events_url\":\"https://api.github.com/users/testgh3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/testgh3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/testgh3py/github3.py\",\"description\":\"Python library for interfacing with the GitHub APIv3\",\"fork\":true,\"url\":\"https://api.github.com/repos/testgh3py/github3.py\",\"forks_url\":\"https://api.github.com/repos/testgh3py/github3.py/forks\",\"keys_url\":\"https://api.github.com/repos/testgh3py/github3.py/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/testgh3py/github3.py/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/testgh3py/github3.py/teams\",\"hooks_url\":\"https://api.github.com/repos/testgh3py/github3.py/hooks\",\"issue_events_url\":\"https://api.github.com/repos/testgh3py/github3.py/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/testgh3py/github3.py/events\",\"assignees_url\":\"https://api.github.com/repos/testgh3py/github3.py/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/testgh3py/github3.py/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/testgh3py/github3.py/tags\",\"blobs_url\":\"https://api.github.com/repos/testgh3py/github3.py/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/testgh3py/github3.py/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/testgh3py/github3.py/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/testgh3py/github3.py/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/testgh3py/github3.py/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/testgh3py/github3.py/languages\",\"stargazers_url\":\"https://api.github.com/repos/testgh3py/github3.py/stargazers\",\"contributors_url\":\"https://api.github.com/repos/testgh3py/github3.py/contributors\",\"subscribers_url\":\"https://api.github.com/repos/testgh3py/github3.py/subscribers\",\"subscription_url\":\"https://api.github.com/repos/testgh3py/github3.py/subscription\",\"commits_url\":\"https://api.github.com/repos/testgh3py/github3.py/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/testgh3py/github3.py/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/testgh3py/github3.py/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/testgh3py/github3.py/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/testgh3py/github3.py/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/testgh3py/github3.py/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/testgh3py/github3.py/merges\",\"archive_url\":\"https://api.github.com/repos/testgh3py/github3.py/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/testgh3py/github3.py/downloads\",\"issues_url\":\"https://api.github.com/repos/testgh3py/github3.py/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/testgh3py/github3.py/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/testgh3py/github3.py/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/testgh3py/github3.py/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/testgh3py/github3.py/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/testgh3py/github3.py/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/testgh3py/github3.py/deployments\",\"created_at\":\"2018-01-03T17:11:01Z\",\"updated_at\":\"2018-01-02T00:49:36Z\",\"pushed_at\":\"2018-01-01T22:06:11Z\",\"git_url\":\"git://github.com/testgh3py/github3.py.git\",\"ssh_url\":\"git@github.com:testgh3py/github3.py.git\",\"clone_url\":\"https://github.com/testgh3py/github3.py.git\",\"svn_url\":\"https://github.com/testgh3py/github3.py\",\"homepage\":\"https://github3py.rtfd.org\",\"size\":5685,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":false,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":false,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"archived\":false,\"open_issues_count\":0,\"license\":null,\"forks\":0,\"open_issues\":0,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"organization\":{\"login\":\"testgh3py\",\"id\":35038710,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/35038710?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/testgh3py\",\"html_url\":\"https://github.com/testgh3py\",\"followers_url\":\"https://api.github.com/users/testgh3py/followers\",\"following_url\":\"https://api.github.com/users/testgh3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/testgh3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/testgh3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/testgh3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/testgh3py/orgs\",\"repos_url\":\"https://api.github.com/users/testgh3py/repos\",\"events_url\":\"https://api.github.com/users/testgh3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/testgh3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"parent\":{\"id\":4464822,\"name\":\"github3.py\",\"full_name\":\"github3py/github3.py\",\"owner\":{\"login\":\"github3py\",\"id\":1782156,\"avatar_url\":\"https://avatars0.githubusercontent.com/u/1782156?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/github3py\",\"html_url\":\"https://github.com/github3py\",\"followers_url\":\"https://api.github.com/users/github3py/followers\",\"following_url\":\"https://api.github.com/users/github3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/github3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/github3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/github3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/github3py/orgs\",\"repos_url\":\"https://api.github.com/users/github3py/repos\",\"events_url\":\"https://api.github.com/users/github3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/github3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/github3py/github3.py\",\"description\":\"Python library for interfacing with the GitHub APIv3\",\"fork\":true,\"url\":\"https://api.github.com/repos/github3py/github3.py\",\"forks_url\":\"https://api.github.com/repos/github3py/github3.py/forks\",\"keys_url\":\"https://api.github.com/repos/github3py/github3.py/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/github3py/github3.py/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/github3py/github3.py/teams\",\"hooks_url\":\"https://api.github.com/repos/github3py/github3.py/hooks\",\"issue_events_url\":\"https://api.github.com/repos/github3py/github3.py/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/github3py/github3.py/events\",\"assignees_url\":\"https://api.github.com/repos/github3py/github3.py/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/github3py/github3.py/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/github3py/github3.py/tags\",\"blobs_url\":\"https://api.github.com/repos/github3py/github3.py/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/github3py/github3.py/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/github3py/github3.py/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/github3py/github3.py/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/github3py/github3.py/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/github3py/github3.py/languages\",\"stargazers_url\":\"https://api.github.com/repos/github3py/github3.py/stargazers\",\"contributors_url\":\"https://api.github.com/repos/github3py/github3.py/contributors\",\"subscribers_url\":\"https://api.github.com/repos/github3py/github3.py/subscribers\",\"subscription_url\":\"https://api.github.com/repos/github3py/github3.py/subscription\",\"commits_url\":\"https://api.github.com/repos/github3py/github3.py/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/github3py/github3.py/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/github3py/github3.py/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/github3py/github3.py/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/github3py/github3.py/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/github3py/github3.py/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/github3py/github3.py/merges\",\"archive_url\":\"https://api.github.com/repos/github3py/github3.py/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/github3py/github3.py/downloads\",\"issues_url\":\"https://api.github.com/repos/github3py/github3.py/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/github3py/github3.py/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/github3py/github3.py/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/github3py/github3.py/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/github3py/github3.py/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/github3py/github3.py/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/github3py/github3.py/deployments\",\"created_at\":\"2012-05-27T21:16:07Z\",\"updated_at\":\"2018-01-02T00:49:36Z\",\"pushed_at\":\"2018-01-01T22:06:11Z\",\"git_url\":\"git://github.com/github3py/github3.py.git\",\"ssh_url\":\"git@github.com:github3py/github3.py.git\",\"clone_url\":\"https://github.com/github3py/github3.py.git\",\"svn_url\":\"https://github.com/github3py/github3.py\",\"homepage\":\"https://github3py.rtfd.org\",\"size\":5685,\"stargazers_count\":4,\"watchers_count\":4,\"language\":\"Python\",\"has_issues\":false,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":false,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"archived\":false,\"open_issues_count\":1,\"license\":{\"key\":\"bsd-3-clause\",\"name\":\"BSD 3-clause \\\"New\\\" or \\\"Revised\\\" License\",\"spdx_id\":\"BSD-3-Clause\",\"url\":\"https://api.github.com/licenses/bsd-3-clause\"},\"forks\":1,\"open_issues\":1,\"watchers\":4,\"default_branch\":\"master\"},\"source\":{\"id\":3710711,\"name\":\"github3.py\",\"full_name\":\"sigmavirus24/github3.py\",\"owner\":{\"login\":\"sigmavirus24\",\"id\":240830,\"avatar_url\":\"https://avatars3.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/sigmavirus24/github3.py\",\"description\":\"Python library for interfacing with the GitHub APIv3\",\"fork\":false,\"url\":\"https://api.github.com/repos/sigmavirus24/github3.py\",\"forks_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/forks\",\"keys_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/teams\",\"hooks_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/hooks\",\"issue_events_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/events\",\"assignees_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/tags\",\"blobs_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/languages\",\"stargazers_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/stargazers\",\"contributors_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/contributors\",\"subscribers_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/subscribers\",\"subscription_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/subscription\",\"commits_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/merges\",\"archive_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/downloads\",\"issues_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/deployments\",\"created_at\":\"2012-03-13T19:58:53Z\",\"updated_at\":\"2018-01-03T10:28:35Z\",\"pushed_at\":\"2018-01-02T00:49:36Z\",\"git_url\":\"git://github.com/sigmavirus24/github3.py.git\",\"ssh_url\":\"git@github.com:sigmavirus24/github3.py.git\",\"clone_url\":\"https://github.com/sigmavirus24/github3.py.git\",\"svn_url\":\"https://github.com/sigmavirus24/github3.py\",\"homepage\":\"https://github3py.readthedocs.io\",\"size\":18719,\"stargazers_count\":745,\"watchers_count\":745,\"language\":\"Python\",\"has_issues\":true,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":false,\"has_pages\":false,\"forks_count\":280,\"mirror_url\":null,\"archived\":false,\"open_issues_count\":107,\"license\":null,\"forks\":280,\"open_issues\":107,\"watchers\":745,\"default_branch\":\"develop\"},\"network_count\":280,\"subscribers_count\":0}"}, "headers": {"Server": "GitHub.com", "Date": "Wed, 03 Jan 2018 17:11:02 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "15854", "Status": "202 Accepted", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4994", "X-RateLimit-Reset": "1515002817", "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.872109", "X-GitHub-Request-Id": "CC9E:7AA2:3B187D:C86292:5A4D0EA5"}, "status": {"code": 202, "message": "Accepted"}, "url": "https://api.github.com/repos/github3py/github3.py/forks"}, "recorded_at": "2018-01-03T17:11:02"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"title\": \"Update forked repo\", \"body\": \"Testing the ability to create a pull request\", \"base\": \"master\", \"head\": \"testgh3py:develop\"}"}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token ", "Content-Length": "134"}, "method": "POST", "uri": "https://api.github.com/repos/testgh3py/github3.py/pulls"}, "response": {"body": {"encoding": "utf-8", "string": "{\"url\":\"https://api.github.com/repos/testgh3py/github3.py/pulls/1\",\"id\":160957301,\"html_url\":\"https://github.com/testgh3py/github3.py/pull/1\",\"diff_url\":\"https://github.com/testgh3py/github3.py/pull/1.diff\",\"patch_url\":\"https://github.com/testgh3py/github3.py/pull/1.patch\",\"issue_url\":\"https://api.github.com/repos/testgh3py/github3.py/issues/1\",\"number\":1,\"state\":\"open\",\"locked\":false,\"title\":\"Update forked repo\",\"user\":{\"login\":\"sigmavirus24\",\"id\":240830,\"avatar_url\":\"https://avatars3.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"body\":\"Testing the ability to create a pull request\",\"created_at\":\"2018-01-03T17:11:03Z\",\"updated_at\":\"2018-01-03T17:11:03Z\",\"closed_at\":null,\"merged_at\":null,\"merge_commit_sha\":null,\"assignee\":null,\"assignees\":[],\"requested_reviewers\":[],\"milestone\":null,\"commits_url\":\"https://api.github.com/repos/testgh3py/github3.py/pulls/1/commits\",\"review_comments_url\":\"https://api.github.com/repos/testgh3py/github3.py/pulls/1/comments\",\"review_comment_url\":\"https://api.github.com/repos/testgh3py/github3.py/pulls/comments{/number}\",\"comments_url\":\"https://api.github.com/repos/testgh3py/github3.py/issues/1/comments\",\"statuses_url\":\"https://api.github.com/repos/testgh3py/github3.py/statuses/c651c8ae8853ad831278ab57404cd37eabee5cec\",\"head\":{\"label\":\"testgh3py:develop\",\"ref\":\"develop\",\"sha\":\"c651c8ae8853ad831278ab57404cd37eabee5cec\",\"user\":{\"login\":\"testgh3py\",\"id\":35038710,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/35038710?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/testgh3py\",\"html_url\":\"https://github.com/testgh3py\",\"followers_url\":\"https://api.github.com/users/testgh3py/followers\",\"following_url\":\"https://api.github.com/users/testgh3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/testgh3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/testgh3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/testgh3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/testgh3py/orgs\",\"repos_url\":\"https://api.github.com/users/testgh3py/repos\",\"events_url\":\"https://api.github.com/users/testgh3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/testgh3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"repo\":{\"id\":116162347,\"name\":\"github3.py\",\"full_name\":\"testgh3py/github3.py\",\"owner\":{\"login\":\"testgh3py\",\"id\":35038710,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/35038710?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/testgh3py\",\"html_url\":\"https://github.com/testgh3py\",\"followers_url\":\"https://api.github.com/users/testgh3py/followers\",\"following_url\":\"https://api.github.com/users/testgh3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/testgh3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/testgh3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/testgh3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/testgh3py/orgs\",\"repos_url\":\"https://api.github.com/users/testgh3py/repos\",\"events_url\":\"https://api.github.com/users/testgh3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/testgh3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/testgh3py/github3.py\",\"description\":\"Python library for interfacing with the GitHub APIv3\",\"fork\":true,\"url\":\"https://api.github.com/repos/testgh3py/github3.py\",\"forks_url\":\"https://api.github.com/repos/testgh3py/github3.py/forks\",\"keys_url\":\"https://api.github.com/repos/testgh3py/github3.py/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/testgh3py/github3.py/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/testgh3py/github3.py/teams\",\"hooks_url\":\"https://api.github.com/repos/testgh3py/github3.py/hooks\",\"issue_events_url\":\"https://api.github.com/repos/testgh3py/github3.py/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/testgh3py/github3.py/events\",\"assignees_url\":\"https://api.github.com/repos/testgh3py/github3.py/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/testgh3py/github3.py/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/testgh3py/github3.py/tags\",\"blobs_url\":\"https://api.github.com/repos/testgh3py/github3.py/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/testgh3py/github3.py/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/testgh3py/github3.py/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/testgh3py/github3.py/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/testgh3py/github3.py/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/testgh3py/github3.py/languages\",\"stargazers_url\":\"https://api.github.com/repos/testgh3py/github3.py/stargazers\",\"contributors_url\":\"https://api.github.com/repos/testgh3py/github3.py/contributors\",\"subscribers_url\":\"https://api.github.com/repos/testgh3py/github3.py/subscribers\",\"subscription_url\":\"https://api.github.com/repos/testgh3py/github3.py/subscription\",\"commits_url\":\"https://api.github.com/repos/testgh3py/github3.py/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/testgh3py/github3.py/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/testgh3py/github3.py/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/testgh3py/github3.py/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/testgh3py/github3.py/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/testgh3py/github3.py/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/testgh3py/github3.py/merges\",\"archive_url\":\"https://api.github.com/repos/testgh3py/github3.py/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/testgh3py/github3.py/downloads\",\"issues_url\":\"https://api.github.com/repos/testgh3py/github3.py/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/testgh3py/github3.py/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/testgh3py/github3.py/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/testgh3py/github3.py/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/testgh3py/github3.py/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/testgh3py/github3.py/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/testgh3py/github3.py/deployments\",\"created_at\":\"2018-01-03T17:11:01Z\",\"updated_at\":\"2018-01-02T00:49:36Z\",\"pushed_at\":\"2018-01-01T22:06:11Z\",\"git_url\":\"git://github.com/testgh3py/github3.py.git\",\"ssh_url\":\"git@github.com:testgh3py/github3.py.git\",\"clone_url\":\"https://github.com/testgh3py/github3.py.git\",\"svn_url\":\"https://github.com/testgh3py/github3.py\",\"homepage\":\"https://github3py.rtfd.org\",\"size\":5685,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":false,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":false,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"archived\":false,\"open_issues_count\":1,\"license\":null,\"forks\":0,\"open_issues\":1,\"watchers\":0,\"default_branch\":\"master\"}},\"base\":{\"label\":\"testgh3py:master\",\"ref\":\"master\",\"sha\":\"37a4195a704db9c3e1d083ba6ddbda364e0affeb\",\"user\":{\"login\":\"testgh3py\",\"id\":35038710,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/35038710?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/testgh3py\",\"html_url\":\"https://github.com/testgh3py\",\"followers_url\":\"https://api.github.com/users/testgh3py/followers\",\"following_url\":\"https://api.github.com/users/testgh3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/testgh3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/testgh3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/testgh3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/testgh3py/orgs\",\"repos_url\":\"https://api.github.com/users/testgh3py/repos\",\"events_url\":\"https://api.github.com/users/testgh3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/testgh3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"repo\":{\"id\":116162347,\"name\":\"github3.py\",\"full_name\":\"testgh3py/github3.py\",\"owner\":{\"login\":\"testgh3py\",\"id\":35038710,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/35038710?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/testgh3py\",\"html_url\":\"https://github.com/testgh3py\",\"followers_url\":\"https://api.github.com/users/testgh3py/followers\",\"following_url\":\"https://api.github.com/users/testgh3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/testgh3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/testgh3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/testgh3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/testgh3py/orgs\",\"repos_url\":\"https://api.github.com/users/testgh3py/repos\",\"events_url\":\"https://api.github.com/users/testgh3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/testgh3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/testgh3py/github3.py\",\"description\":\"Python library for interfacing with the GitHub APIv3\",\"fork\":true,\"url\":\"https://api.github.com/repos/testgh3py/github3.py\",\"forks_url\":\"https://api.github.com/repos/testgh3py/github3.py/forks\",\"keys_url\":\"https://api.github.com/repos/testgh3py/github3.py/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/testgh3py/github3.py/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/testgh3py/github3.py/teams\",\"hooks_url\":\"https://api.github.com/repos/testgh3py/github3.py/hooks\",\"issue_events_url\":\"https://api.github.com/repos/testgh3py/github3.py/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/testgh3py/github3.py/events\",\"assignees_url\":\"https://api.github.com/repos/testgh3py/github3.py/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/testgh3py/github3.py/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/testgh3py/github3.py/tags\",\"blobs_url\":\"https://api.github.com/repos/testgh3py/github3.py/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/testgh3py/github3.py/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/testgh3py/github3.py/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/testgh3py/github3.py/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/testgh3py/github3.py/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/testgh3py/github3.py/languages\",\"stargazers_url\":\"https://api.github.com/repos/testgh3py/github3.py/stargazers\",\"contributors_url\":\"https://api.github.com/repos/testgh3py/github3.py/contributors\",\"subscribers_url\":\"https://api.github.com/repos/testgh3py/github3.py/subscribers\",\"subscription_url\":\"https://api.github.com/repos/testgh3py/github3.py/subscription\",\"commits_url\":\"https://api.github.com/repos/testgh3py/github3.py/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/testgh3py/github3.py/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/testgh3py/github3.py/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/testgh3py/github3.py/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/testgh3py/github3.py/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/testgh3py/github3.py/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/testgh3py/github3.py/merges\",\"archive_url\":\"https://api.github.com/repos/testgh3py/github3.py/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/testgh3py/github3.py/downloads\",\"issues_url\":\"https://api.github.com/repos/testgh3py/github3.py/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/testgh3py/github3.py/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/testgh3py/github3.py/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/testgh3py/github3.py/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/testgh3py/github3.py/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/testgh3py/github3.py/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/testgh3py/github3.py/deployments\",\"created_at\":\"2018-01-03T17:11:01Z\",\"updated_at\":\"2018-01-02T00:49:36Z\",\"pushed_at\":\"2018-01-01T22:06:11Z\",\"git_url\":\"git://github.com/testgh3py/github3.py.git\",\"ssh_url\":\"git@github.com:testgh3py/github3.py.git\",\"clone_url\":\"https://github.com/testgh3py/github3.py.git\",\"svn_url\":\"https://github.com/testgh3py/github3.py\",\"homepage\":\"https://github3py.rtfd.org\",\"size\":5685,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":false,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":false,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"archived\":false,\"open_issues_count\":1,\"license\":null,\"forks\":0,\"open_issues\":1,\"watchers\":0,\"default_branch\":\"master\"}},\"_links\":{\"self\":{\"href\":\"https://api.github.com/repos/testgh3py/github3.py/pulls/1\"},\"html\":{\"href\":\"https://github.com/testgh3py/github3.py/pull/1\"},\"issue\":{\"href\":\"https://api.github.com/repos/testgh3py/github3.py/issues/1\"},\"comments\":{\"href\":\"https://api.github.com/repos/testgh3py/github3.py/issues/1/comments\"},\"review_comments\":{\"href\":\"https://api.github.com/repos/testgh3py/github3.py/pulls/1/comments\"},\"review_comment\":{\"href\":\"https://api.github.com/repos/testgh3py/github3.py/pulls/comments{/number}\"},\"commits\":{\"href\":\"https://api.github.com/repos/testgh3py/github3.py/pulls/1/commits\"},\"statuses\":{\"href\":\"https://api.github.com/repos/testgh3py/github3.py/statuses/c651c8ae8853ad831278ab57404cd37eabee5cec\"}},\"author_association\":\"MEMBER\",\"body_html\":\"

Testing the ability to create a pull request

\",\"body_text\":\"Testing the ability to create a pull request\",\"merged\":false,\"mergeable\":null,\"rebaseable\":null,\"mergeable_state\":\"unknown\",\"merged_by\":null,\"comments\":0,\"review_comments\":0,\"maintainer_can_modify\":false,\"commits\":834,\"additions\":12977,\"deletions\":4821,\"changed_files\":272}"}, "headers": {"Server": "GitHub.com", "Date": "Wed, 03 Jan 2018 17:11:03 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "14874", "Status": "201 Created", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4993", "X-RateLimit-Reset": "1515002817", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"311b6987f334767c5e2d4f3736375406\"", "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/testgh3py/github3.py/pulls/1", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.954362", "X-GitHub-Request-Id": "CC9E:7AA2:3B191F:C86479:5A4D0EA6"}, "status": {"code": 201, "message": "Created"}, "url": "https://api.github.com/repos/testgh3py/github3.py/pulls"}, "recorded_at": "2018-01-03T17:11:03"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token ", "Content-Length": "0"}, "method": "DELETE", "uri": "https://api.github.com/repos/testgh3py/github3.py"}, "response": {"body": {"encoding": null, "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Wed, 03 Jan 2018 17:11:03 GMT", "Content-Type": "application/octet-stream", "Status": "204 No Content", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4992", "X-RateLimit-Reset": "1515002817", "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user", "X-Accepted-OAuth-Scopes": "delete_repo", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.105517", "X-GitHub-Request-Id": "CC9E:7AA2:3B19B5:C86648:5A4D0EA7"}, "status": {"code": 204, "message": "No Content"}, "url": "https://api.github.com/repos/testgh3py/github3.py"}, "recorded_at": "2018-01-03T17:11:03"}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/github3py/github3.py"}, "response": {"body": {"encoding": "utf-8", "string": "{\"message\":\"Moved Permanently\",\"url\":\"https://api.github.com/repositories/4464822\",\"documentation_url\":\"https://docs.github.com/v3/#http-redirects\"}"}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:35:53 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Content-Length": ["148"], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": ["admin:repo_hook, delete_repo, read:repo_hook, repo, repo:status, repo_deployment, security_events, write:repo_hook"], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "Location": ["https://api.github.com/repositories/4464822"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4997"], "X-RateLimit-Reset": ["1635716613"], "X-RateLimit-Used": ["3"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Vary": ["Accept-Encoding, Accept, X-Requested-With"], "X-GitHub-Request-Id": ["BE92:1D15:BF5608:2584B19:617F0C39"]}, "status": {"code": 301, "message": "Moved Permanently"}, "url": "https://api.github.com/repos/github3py/github3.py"}, "recorded_at": "2021-10-31T21:35:53"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repositories/4464822"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:35:53 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"76277332321c84b62b48e432b3f11bc332a6ee9a04587671843081ec67008803\""], "Last-Modified": ["Wed, 02 Dec 2020 18:06:15 GMT"], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": ["repo"], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4996"], "X-RateLimit-Reset": ["1635716613"], "X-RateLimit-Used": ["4"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["BE92:1D15:BF560C:2584B2E:617F0C39"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repositories/4464822"}, "recorded_at": "2021-10-31T21:35:53"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"organization\": \"testgh3py\"}"}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Content-Length": ["29"], "Authorization": ["token "]}, "method": "POST", "uri": "https://api.github.com/repos/github3py/github3py/forks"}, "response": {"body": {"encoding": "utf-8", "string": "{\"id\":423265684,\"node_id\":\"R_kgDOGTqFlA\",\"name\":\"github3py\",\"full_name\":\"testgh3py/github3py\",\"private\":false,\"owner\":{\"login\":\"testgh3py\",\"id\":35038710,\"node_id\":\"MDEyOk9yZ2FuaXphdGlvbjM1MDM4NzEw\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/35038710?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/testgh3py\",\"html_url\":\"https://github.com/testgh3py\",\"followers_url\":\"https://api.github.com/users/testgh3py/followers\",\"following_url\":\"https://api.github.com/users/testgh3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/testgh3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/testgh3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/testgh3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/testgh3py/orgs\",\"repos_url\":\"https://api.github.com/users/testgh3py/repos\",\"events_url\":\"https://api.github.com/users/testgh3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/testgh3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"html_url\":\"https://github.com/testgh3py/github3py\",\"description\":\"Python library for interfacing with the GitHub APIv3\",\"fork\":true,\"url\":\"https://api.github.com/repos/testgh3py/github3py\",\"forks_url\":\"https://api.github.com/repos/testgh3py/github3py/forks\",\"keys_url\":\"https://api.github.com/repos/testgh3py/github3py/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/testgh3py/github3py/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/testgh3py/github3py/teams\",\"hooks_url\":\"https://api.github.com/repos/testgh3py/github3py/hooks\",\"issue_events_url\":\"https://api.github.com/repos/testgh3py/github3py/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/testgh3py/github3py/events\",\"assignees_url\":\"https://api.github.com/repos/testgh3py/github3py/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/testgh3py/github3py/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/testgh3py/github3py/tags\",\"blobs_url\":\"https://api.github.com/repos/testgh3py/github3py/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/testgh3py/github3py/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/testgh3py/github3py/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/testgh3py/github3py/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/testgh3py/github3py/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/testgh3py/github3py/languages\",\"stargazers_url\":\"https://api.github.com/repos/testgh3py/github3py/stargazers\",\"contributors_url\":\"https://api.github.com/repos/testgh3py/github3py/contributors\",\"subscribers_url\":\"https://api.github.com/repos/testgh3py/github3py/subscribers\",\"subscription_url\":\"https://api.github.com/repos/testgh3py/github3py/subscription\",\"commits_url\":\"https://api.github.com/repos/testgh3py/github3py/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/testgh3py/github3py/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/testgh3py/github3py/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/testgh3py/github3py/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/testgh3py/github3py/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/testgh3py/github3py/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/testgh3py/github3py/merges\",\"archive_url\":\"https://api.github.com/repos/testgh3py/github3py/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/testgh3py/github3py/downloads\",\"issues_url\":\"https://api.github.com/repos/testgh3py/github3py/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/testgh3py/github3py/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/testgh3py/github3py/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/testgh3py/github3py/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/testgh3py/github3py/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/testgh3py/github3py/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/testgh3py/github3py/deployments\",\"created_at\":\"2021-10-31T21:35:53Z\",\"updated_at\":\"2020-12-02T18:06:15Z\",\"pushed_at\":\"2018-07-21T23:09:59Z\",\"git_url\":\"git://github.com/testgh3py/github3py.git\",\"ssh_url\":\"git@github.com:testgh3py/github3py.git\",\"clone_url\":\"https://github.com/testgh3py/github3py.git\",\"svn_url\":\"https://github.com/testgh3py/github3py\",\"homepage\":\"https://github3py.rtfd.org\",\"size\":5685,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":false,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":false,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"archived\":false,\"disabled\":false,\"open_issues_count\":0,\"license\":{\"key\":\"other\",\"name\":\"Other\",\"spdx_id\":\"NOASSERTION\",\"url\":null,\"node_id\":\"MDc6TGljZW5zZTA=\"},\"allow_forking\":true,\"is_template\":false,\"topics\":[],\"visibility\":\"public\",\"forks\":0,\"open_issues\":0,\"watchers\":0,\"default_branch\":\"main\",\"permissions\":{\"admin\":true,\"maintain\":true,\"push\":true,\"triage\":true,\"pull\":true},\"organization\":{\"login\":\"testgh3py\",\"id\":35038710,\"node_id\":\"MDEyOk9yZ2FuaXphdGlvbjM1MDM4NzEw\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/35038710?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/testgh3py\",\"html_url\":\"https://github.com/testgh3py\",\"followers_url\":\"https://api.github.com/users/testgh3py/followers\",\"following_url\":\"https://api.github.com/users/testgh3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/testgh3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/testgh3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/testgh3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/testgh3py/orgs\",\"repos_url\":\"https://api.github.com/users/testgh3py/repos\",\"events_url\":\"https://api.github.com/users/testgh3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/testgh3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"parent\":{\"id\":4464822,\"node_id\":\"MDEwOlJlcG9zaXRvcnk0NDY0ODIy\",\"name\":\"github3py\",\"full_name\":\"github3py/github3py\",\"private\":false,\"owner\":{\"login\":\"github3py\",\"id\":1782156,\"node_id\":\"MDEyOk9yZ2FuaXphdGlvbjE3ODIxNTY=\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/1782156?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/github3py\",\"html_url\":\"https://github.com/github3py\",\"followers_url\":\"https://api.github.com/users/github3py/followers\",\"following_url\":\"https://api.github.com/users/github3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/github3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/github3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/github3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/github3py/orgs\",\"repos_url\":\"https://api.github.com/users/github3py/repos\",\"events_url\":\"https://api.github.com/users/github3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/github3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"html_url\":\"https://github.com/github3py/github3py\",\"description\":\"Python library for interfacing with the GitHub APIv3\",\"fork\":true,\"url\":\"https://api.github.com/repos/github3py/github3py\",\"forks_url\":\"https://api.github.com/repos/github3py/github3py/forks\",\"keys_url\":\"https://api.github.com/repos/github3py/github3py/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/github3py/github3py/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/github3py/github3py/teams\",\"hooks_url\":\"https://api.github.com/repos/github3py/github3py/hooks\",\"issue_events_url\":\"https://api.github.com/repos/github3py/github3py/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/github3py/github3py/events\",\"assignees_url\":\"https://api.github.com/repos/github3py/github3py/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/github3py/github3py/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/github3py/github3py/tags\",\"blobs_url\":\"https://api.github.com/repos/github3py/github3py/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/github3py/github3py/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/github3py/github3py/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/github3py/github3py/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/github3py/github3py/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/github3py/github3py/languages\",\"stargazers_url\":\"https://api.github.com/repos/github3py/github3py/stargazers\",\"contributors_url\":\"https://api.github.com/repos/github3py/github3py/contributors\",\"subscribers_url\":\"https://api.github.com/repos/github3py/github3py/subscribers\",\"subscription_url\":\"https://api.github.com/repos/github3py/github3py/subscription\",\"commits_url\":\"https://api.github.com/repos/github3py/github3py/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/github3py/github3py/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/github3py/github3py/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/github3py/github3py/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/github3py/github3py/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/github3py/github3py/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/github3py/github3py/merges\",\"archive_url\":\"https://api.github.com/repos/github3py/github3py/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/github3py/github3py/downloads\",\"issues_url\":\"https://api.github.com/repos/github3py/github3py/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/github3py/github3py/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/github3py/github3py/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/github3py/github3py/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/github3py/github3py/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/github3py/github3py/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/github3py/github3py/deployments\",\"created_at\":\"2012-05-27T21:16:07Z\",\"updated_at\":\"2020-12-02T18:06:15Z\",\"pushed_at\":\"2018-07-21T23:09:59Z\",\"git_url\":\"git://github.com/github3py/github3py.git\",\"ssh_url\":\"git@github.com:github3py/github3py.git\",\"clone_url\":\"https://github.com/github3py/github3py.git\",\"svn_url\":\"https://github.com/github3py/github3py\",\"homepage\":\"https://github3py.rtfd.org\",\"size\":5685,\"stargazers_count\":3,\"watchers_count\":3,\"language\":\"Python\",\"has_issues\":false,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":false,\"has_pages\":false,\"forks_count\":3,\"mirror_url\":null,\"archived\":false,\"disabled\":false,\"open_issues_count\":0,\"license\":{\"key\":\"other\",\"name\":\"Other\",\"spdx_id\":\"NOASSERTION\",\"url\":null,\"node_id\":\"MDc6TGljZW5zZTA=\"},\"allow_forking\":true,\"is_template\":false,\"topics\":[],\"visibility\":\"public\",\"forks\":3,\"open_issues\":0,\"watchers\":3,\"default_branch\":\"master\"},\"source\":{\"id\":3710711,\"node_id\":\"MDEwOlJlcG9zaXRvcnkzNzEwNzEx\",\"name\":\"github3.py\",\"full_name\":\"sigmavirus24/github3.py\",\"private\":false,\"owner\":{\"login\":\"sigmavirus24\",\"id\":240830,\"node_id\":\"MDQ6VXNlcjI0MDgzMA==\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"html_url\":\"https://github.com/sigmavirus24/github3.py\",\"description\":\" Hi, I'm a library for interacting with GItHub's REST API in a convenient and ergonomic way. I work on Python 3.6+.\",\"fork\":false,\"url\":\"https://api.github.com/repos/sigmavirus24/github3.py\",\"forks_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/forks\",\"keys_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/teams\",\"hooks_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/hooks\",\"issue_events_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/events\",\"assignees_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/tags\",\"blobs_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/languages\",\"stargazers_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/stargazers\",\"contributors_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/contributors\",\"subscribers_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/subscribers\",\"subscription_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/subscription\",\"commits_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/merges\",\"archive_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/downloads\",\"issues_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/deployments\",\"created_at\":\"2012-03-13T19:58:53Z\",\"updated_at\":\"2021-10-31T00:16:02Z\",\"pushed_at\":\"2021-10-31T00:15:58Z\",\"git_url\":\"git://github.com/sigmavirus24/github3.py.git\",\"ssh_url\":\"git@github.com:sigmavirus24/github3.py.git\",\"clone_url\":\"https://github.com/sigmavirus24/github3.py.git\",\"svn_url\":\"https://github.com/sigmavirus24/github3.py\",\"homepage\":\"https://github3.readthedocs.io\",\"size\":53644,\"stargazers_count\":1064,\"watchers_count\":1064,\"language\":\"Python\",\"has_issues\":true,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":false,\"has_pages\":false,\"forks_count\":388,\"mirror_url\":null,\"archived\":false,\"disabled\":false,\"open_issues_count\":80,\"license\":{\"key\":\"other\",\"name\":\"Other\",\"spdx_id\":\"NOASSERTION\",\"url\":null,\"node_id\":\"MDc6TGljZW5zZTA=\"},\"allow_forking\":true,\"is_template\":false,\"topics\":[\"github\",\"github-api\",\"python\",\"python36\",\"python37\",\"python38\",\"python39\",\"rest\",\"rest-api\",\"rest-client\"],\"visibility\":\"public\",\"forks\":388,\"open_issues\":80,\"watchers\":1064,\"default_branch\":\"main\"},\"network_count\":388,\"subscribers_count\":0}"}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:35:54 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Content-Length": ["16627"], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4995"], "X-RateLimit-Reset": ["1635716613"], "X-RateLimit-Used": ["5"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Vary": ["Accept-Encoding, Accept, X-Requested-With"], "X-GitHub-Request-Id": ["BE92:1D15:BF5615:2584B56:617F0C39"]}, "status": {"code": 202, "message": "Accepted"}, "url": "https://api.github.com/repos/github3py/github3py/forks"}, "recorded_at": "2021-10-31T21:35:54"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"title\": \"Update forked repo\", \"body\": \"Testing the ability to create a pull request\", \"base\": \"master\", \"head\": \"testgh3py:develop\"}"}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Content-Length": ["134"], "Authorization": ["token "]}, "method": "POST", "uri": "https://api.github.com/repos/testgh3py/github3py/pulls"}, "response": {"body": {"encoding": "utf-8", "string": "{\"url\":\"https://api.github.com/repos/testgh3py/github3py/pulls/1\",\"id\":770020527,\"node_id\":\"PR_kwDOGTqFlM4t5ZSv\",\"html_url\":\"https://github.com/testgh3py/github3py/pull/1\",\"diff_url\":\"https://github.com/testgh3py/github3py/pull/1.diff\",\"patch_url\":\"https://github.com/testgh3py/github3py/pull/1.patch\",\"issue_url\":\"https://api.github.com/repos/testgh3py/github3py/issues/1\",\"number\":1,\"state\":\"open\",\"locked\":false,\"title\":\"Update forked repo\",\"user\":{\"login\":\"sigmavirus24\",\"id\":240830,\"node_id\":\"MDQ6VXNlcjI0MDgzMA==\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"body\":\"Testing the ability to create a pull request\",\"created_at\":\"2021-10-31T21:35:55Z\",\"updated_at\":\"2021-10-31T21:35:55Z\",\"closed_at\":null,\"merged_at\":null,\"merge_commit_sha\":null,\"assignee\":null,\"assignees\":[],\"requested_reviewers\":[],\"requested_teams\":[],\"labels\":[],\"milestone\":null,\"draft\":false,\"commits_url\":\"https://api.github.com/repos/testgh3py/github3py/pulls/1/commits\",\"review_comments_url\":\"https://api.github.com/repos/testgh3py/github3py/pulls/1/comments\",\"review_comment_url\":\"https://api.github.com/repos/testgh3py/github3py/pulls/comments{/number}\",\"comments_url\":\"https://api.github.com/repos/testgh3py/github3py/issues/1/comments\",\"statuses_url\":\"https://api.github.com/repos/testgh3py/github3py/statuses/c651c8ae8853ad831278ab57404cd37eabee5cec\",\"head\":{\"label\":\"testgh3py:develop\",\"ref\":\"develop\",\"sha\":\"c651c8ae8853ad831278ab57404cd37eabee5cec\",\"user\":{\"login\":\"testgh3py\",\"id\":35038710,\"node_id\":\"MDEyOk9yZ2FuaXphdGlvbjM1MDM4NzEw\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/35038710?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/testgh3py\",\"html_url\":\"https://github.com/testgh3py\",\"followers_url\":\"https://api.github.com/users/testgh3py/followers\",\"following_url\":\"https://api.github.com/users/testgh3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/testgh3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/testgh3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/testgh3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/testgh3py/orgs\",\"repos_url\":\"https://api.github.com/users/testgh3py/repos\",\"events_url\":\"https://api.github.com/users/testgh3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/testgh3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"repo\":{\"id\":423265684,\"node_id\":\"R_kgDOGTqFlA\",\"name\":\"github3py\",\"full_name\":\"testgh3py/github3py\",\"private\":false,\"owner\":{\"login\":\"testgh3py\",\"id\":35038710,\"node_id\":\"MDEyOk9yZ2FuaXphdGlvbjM1MDM4NzEw\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/35038710?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/testgh3py\",\"html_url\":\"https://github.com/testgh3py\",\"followers_url\":\"https://api.github.com/users/testgh3py/followers\",\"following_url\":\"https://api.github.com/users/testgh3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/testgh3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/testgh3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/testgh3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/testgh3py/orgs\",\"repos_url\":\"https://api.github.com/users/testgh3py/repos\",\"events_url\":\"https://api.github.com/users/testgh3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/testgh3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"html_url\":\"https://github.com/testgh3py/github3py\",\"description\":\"Python library for interfacing with the GitHub APIv3\",\"fork\":true,\"url\":\"https://api.github.com/repos/testgh3py/github3py\",\"forks_url\":\"https://api.github.com/repos/testgh3py/github3py/forks\",\"keys_url\":\"https://api.github.com/repos/testgh3py/github3py/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/testgh3py/github3py/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/testgh3py/github3py/teams\",\"hooks_url\":\"https://api.github.com/repos/testgh3py/github3py/hooks\",\"issue_events_url\":\"https://api.github.com/repos/testgh3py/github3py/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/testgh3py/github3py/events\",\"assignees_url\":\"https://api.github.com/repos/testgh3py/github3py/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/testgh3py/github3py/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/testgh3py/github3py/tags\",\"blobs_url\":\"https://api.github.com/repos/testgh3py/github3py/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/testgh3py/github3py/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/testgh3py/github3py/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/testgh3py/github3py/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/testgh3py/github3py/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/testgh3py/github3py/languages\",\"stargazers_url\":\"https://api.github.com/repos/testgh3py/github3py/stargazers\",\"contributors_url\":\"https://api.github.com/repos/testgh3py/github3py/contributors\",\"subscribers_url\":\"https://api.github.com/repos/testgh3py/github3py/subscribers\",\"subscription_url\":\"https://api.github.com/repos/testgh3py/github3py/subscription\",\"commits_url\":\"https://api.github.com/repos/testgh3py/github3py/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/testgh3py/github3py/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/testgh3py/github3py/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/testgh3py/github3py/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/testgh3py/github3py/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/testgh3py/github3py/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/testgh3py/github3py/merges\",\"archive_url\":\"https://api.github.com/repos/testgh3py/github3py/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/testgh3py/github3py/downloads\",\"issues_url\":\"https://api.github.com/repos/testgh3py/github3py/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/testgh3py/github3py/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/testgh3py/github3py/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/testgh3py/github3py/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/testgh3py/github3py/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/testgh3py/github3py/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/testgh3py/github3py/deployments\",\"created_at\":\"2021-10-31T21:35:53Z\",\"updated_at\":\"2020-12-02T18:06:15Z\",\"pushed_at\":\"2018-07-21T23:09:59Z\",\"git_url\":\"git://github.com/testgh3py/github3py.git\",\"ssh_url\":\"git@github.com:testgh3py/github3py.git\",\"clone_url\":\"https://github.com/testgh3py/github3py.git\",\"svn_url\":\"https://github.com/testgh3py/github3py\",\"homepage\":\"https://github3py.rtfd.org\",\"size\":5685,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":false,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":false,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"archived\":false,\"disabled\":false,\"open_issues_count\":1,\"license\":{\"key\":\"other\",\"name\":\"Other\",\"spdx_id\":\"NOASSERTION\",\"url\":null,\"node_id\":\"MDc6TGljZW5zZTA=\"},\"allow_forking\":true,\"is_template\":false,\"topics\":[],\"visibility\":\"public\",\"forks\":0,\"open_issues\":1,\"watchers\":0,\"default_branch\":\"master\"}},\"base\":{\"label\":\"testgh3py:master\",\"ref\":\"master\",\"sha\":\"37a4195a704db9c3e1d083ba6ddbda364e0affeb\",\"user\":{\"login\":\"testgh3py\",\"id\":35038710,\"node_id\":\"MDEyOk9yZ2FuaXphdGlvbjM1MDM4NzEw\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/35038710?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/testgh3py\",\"html_url\":\"https://github.com/testgh3py\",\"followers_url\":\"https://api.github.com/users/testgh3py/followers\",\"following_url\":\"https://api.github.com/users/testgh3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/testgh3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/testgh3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/testgh3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/testgh3py/orgs\",\"repos_url\":\"https://api.github.com/users/testgh3py/repos\",\"events_url\":\"https://api.github.com/users/testgh3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/testgh3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"repo\":{\"id\":423265684,\"node_id\":\"R_kgDOGTqFlA\",\"name\":\"github3py\",\"full_name\":\"testgh3py/github3py\",\"private\":false,\"owner\":{\"login\":\"testgh3py\",\"id\":35038710,\"node_id\":\"MDEyOk9yZ2FuaXphdGlvbjM1MDM4NzEw\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/35038710?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/testgh3py\",\"html_url\":\"https://github.com/testgh3py\",\"followers_url\":\"https://api.github.com/users/testgh3py/followers\",\"following_url\":\"https://api.github.com/users/testgh3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/testgh3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/testgh3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/testgh3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/testgh3py/orgs\",\"repos_url\":\"https://api.github.com/users/testgh3py/repos\",\"events_url\":\"https://api.github.com/users/testgh3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/testgh3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"html_url\":\"https://github.com/testgh3py/github3py\",\"description\":\"Python library for interfacing with the GitHub APIv3\",\"fork\":true,\"url\":\"https://api.github.com/repos/testgh3py/github3py\",\"forks_url\":\"https://api.github.com/repos/testgh3py/github3py/forks\",\"keys_url\":\"https://api.github.com/repos/testgh3py/github3py/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/testgh3py/github3py/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/testgh3py/github3py/teams\",\"hooks_url\":\"https://api.github.com/repos/testgh3py/github3py/hooks\",\"issue_events_url\":\"https://api.github.com/repos/testgh3py/github3py/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/testgh3py/github3py/events\",\"assignees_url\":\"https://api.github.com/repos/testgh3py/github3py/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/testgh3py/github3py/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/testgh3py/github3py/tags\",\"blobs_url\":\"https://api.github.com/repos/testgh3py/github3py/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/testgh3py/github3py/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/testgh3py/github3py/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/testgh3py/github3py/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/testgh3py/github3py/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/testgh3py/github3py/languages\",\"stargazers_url\":\"https://api.github.com/repos/testgh3py/github3py/stargazers\",\"contributors_url\":\"https://api.github.com/repos/testgh3py/github3py/contributors\",\"subscribers_url\":\"https://api.github.com/repos/testgh3py/github3py/subscribers\",\"subscription_url\":\"https://api.github.com/repos/testgh3py/github3py/subscription\",\"commits_url\":\"https://api.github.com/repos/testgh3py/github3py/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/testgh3py/github3py/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/testgh3py/github3py/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/testgh3py/github3py/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/testgh3py/github3py/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/testgh3py/github3py/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/testgh3py/github3py/merges\",\"archive_url\":\"https://api.github.com/repos/testgh3py/github3py/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/testgh3py/github3py/downloads\",\"issues_url\":\"https://api.github.com/repos/testgh3py/github3py/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/testgh3py/github3py/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/testgh3py/github3py/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/testgh3py/github3py/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/testgh3py/github3py/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/testgh3py/github3py/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/testgh3py/github3py/deployments\",\"created_at\":\"2021-10-31T21:35:53Z\",\"updated_at\":\"2020-12-02T18:06:15Z\",\"pushed_at\":\"2018-07-21T23:09:59Z\",\"git_url\":\"git://github.com/testgh3py/github3py.git\",\"ssh_url\":\"git@github.com:testgh3py/github3py.git\",\"clone_url\":\"https://github.com/testgh3py/github3py.git\",\"svn_url\":\"https://github.com/testgh3py/github3py\",\"homepage\":\"https://github3py.rtfd.org\",\"size\":5685,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":false,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":false,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"archived\":false,\"disabled\":false,\"open_issues_count\":1,\"license\":{\"key\":\"other\",\"name\":\"Other\",\"spdx_id\":\"NOASSERTION\",\"url\":null,\"node_id\":\"MDc6TGljZW5zZTA=\"},\"allow_forking\":true,\"is_template\":false,\"topics\":[],\"visibility\":\"public\",\"forks\":0,\"open_issues\":1,\"watchers\":0,\"default_branch\":\"master\"}},\"_links\":{\"self\":{\"href\":\"https://api.github.com/repos/testgh3py/github3py/pulls/1\"},\"html\":{\"href\":\"https://github.com/testgh3py/github3py/pull/1\"},\"issue\":{\"href\":\"https://api.github.com/repos/testgh3py/github3py/issues/1\"},\"comments\":{\"href\":\"https://api.github.com/repos/testgh3py/github3py/issues/1/comments\"},\"review_comments\":{\"href\":\"https://api.github.com/repos/testgh3py/github3py/pulls/1/comments\"},\"review_comment\":{\"href\":\"https://api.github.com/repos/testgh3py/github3py/pulls/comments{/number}\"},\"commits\":{\"href\":\"https://api.github.com/repos/testgh3py/github3py/pulls/1/commits\"},\"statuses\":{\"href\":\"https://api.github.com/repos/testgh3py/github3py/statuses/c651c8ae8853ad831278ab57404cd37eabee5cec\"}},\"author_association\":\"MEMBER\",\"auto_merge\":null,\"body_html\":\"

Testing the ability to create a pull request

\",\"body_text\":\"Testing the ability to create a pull request\",\"active_lock_reason\":null,\"merged\":false,\"mergeable\":null,\"rebaseable\":null,\"mergeable_state\":\"unknown\",\"merged_by\":null,\"comments\":0,\"review_comments\":0,\"maintainer_can_modify\":false,\"commits\":834,\"additions\":12977,\"deletions\":4821,\"changed_files\":272}"}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:35:56 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Content-Length": ["15513"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["\"1d84691c6a0e8e43c9c38ca9b1fc23d41958b4ef9b5cbbf7304f208214dadad9\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "Location": ["https://api.github.com/repos/testgh3py/github3py/pulls/1"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4994"], "X-RateLimit-Reset": ["1635716613"], "X-RateLimit-Used": ["6"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "X-GitHub-Request-Id": ["BE92:1D15:BF5658:2584C2F:617F0C3A"]}, "status": {"code": 201, "message": "Created"}, "url": "https://api.github.com/repos/testgh3py/github3py/pulls"}, "recorded_at": "2021-10-31T21:35:56"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Content-Length": ["0"], "Authorization": ["token "]}, "method": "DELETE", "uri": "https://api.github.com/repos/testgh3py/github3py"}, "response": {"body": {"encoding": null, "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:35:56 GMT"], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": ["delete_repo"], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4993"], "X-RateLimit-Reset": ["1635716613"], "X-RateLimit-Used": ["7"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Vary": ["Accept-Encoding, Accept, X-Requested-With"], "X-GitHub-Request-Id": ["BE92:1D15:BF568F:2584D09:617F0C3C"]}, "status": {"code": 204, "message": "No Content"}, "url": "https://api.github.com/repos/testgh3py/github3py"}, "recorded_at": "2021-10-31T21:35:56"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/Repository_create_pull_from_issue.json b/tests/cassettes/Repository_create_pull_from_issue.json index d9a980b2f..b3fa86c3a 100644 --- a/tests/cassettes/Repository_create_pull_from_issue.json +++ b/tests/cassettes/Repository_create_pull_from_issue.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.drax-preview+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token "}, "method": "GET", "uri": "https://api.github.com/repos/github3py/fork_this"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1Yy3LrNgz9lYy2dUI7r5topnPbL+jmrrrx0BJtsZFElaTscTT59x6QlCV5aseht9l4ZArnCAQBEECXyDxJn14Wz68vj7Ok5pVI0mSt9NvSFtIks2TdluUyrG+kLdrVQ7NnYwm1q4VO0i4p1UbWgB/EACf6xY+X+8XT8yzhW265Xra6hFRhbWNSxvyimd95WGuEzlRtRW3vMlWxlgX4z+3vjyDc6MBCzAkWjtgaGYg8GmyGjRUqbFUeaeBfO/mx5FqVpdoBf6zw2U/ANAFGxnPPst7EUADWMWULAYthGx+0eWnsF9VxkA4bM3YpcyIxOAMt8q+pFEBQiE77o2NaNMqxtSuTadlYqeovqjaBgkrpDa/lO4+gApSclZT6ohIOAqjYwuO+iPWYjjVabnm2J3NokQm5hXVj+I7AoLP7hgLyr5FlyObSiiXPK4q2NS+N+JglTgcLYbcwQ3hd5OeTSM7F4Sjx0T9vnG2kVXp/Y9WNFcbeUODDMW/UGnrQn8MHz8ahYxqia/JVYvnE8CfhjoiO703sozkI2zH8hgDJELV8pTTHzqNJJyQdG/8lP7GCV9HcDgySQql4yzkwSKQxrbjIXU+fguMwrI+Huq1WPmFdEgWnaT0aOnJj5KYWItpiB4KO9bl0pXmdFfGUPb5j/smdKt9Eq0hYUKxKtYrmwPXFHEHHTMH9jWGX12hFjISfEGqxvkpFwh8Irb7iXJ16RHCgw0VlccTR+vV41gULlrzetHwTz3ggwOnSNbrh758WFadjYmAAHRVKWq7a6xLVwEEa+vsc8RtvwoFiIHQFwvma48ymR0WG23ZVyc8u69NsAT5x6SspyQ+Paen/5zXFeTUJ37Ehn/pkHZhjrRmyda/fmD9U3tFH3+NZ91vDbUEZCJ9puBaxygY461Ycdc7d3V1XCO7q2EroK6LSo0HDdVagYovVr+vxqEQqbl1lvCb1clTKpeJ5tC0PBCDzRxaro0ePz7lBVxetmAOP2SpZojZUdXyOHBjGvLWyci2zSxqC02E0Iel+GllnYsbLcgavtDKT8FMUtHRiKPpEvFU8Guqjh/adQCngstFW1sLjO+bbtlw0pdpflVFGFBSYWqBhyJfcoti/ny/ub+evt4unX/P79HGePjz8DZm2yScyP24htnj+NZ+nEJu/kkzTmmJEcyTyg0SQHoPv4gk9//913ENPQA08QMYUA+iPAZL6x8kYIkCyEk54FCWXfWt7fDedh0G9QlWiQV2QpDXigZqydzzfT+74TLU1rDufJTtuUWziTh2W+rqgJyi4WfpITVKrW+rhsNJo9Y/IrBmvDZlhJLiTb3ICpJrl0J35Jit8fIHkKbVWYRTj9Q95DFOV0EGqRtRBoV7rBZClzERtDtv2DViKFyN5zHyw0O/ZGSAXa96WdumLZXhcxY3F3Aj+I3SFfdP8gKZIoa/1FiDf6jdFacc/o91FAKvd0vzbcniJy+W9mH/jlqA2FQrTN1rQTTLFjCcP35OsYcj3Pcnqh5TnZ37fk6zpnBU10GQMhii/fJJVC7ujAfSQrMY9SVh9+PgPlnFXobsWAAA=", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Tue, 02 Jan 2018 14:39:58 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4996", "X-RateLimit-Reset": "1514906951", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"20e5859f7979ce7e826b84d505f9d3b7\"", "Last-Modified": "Sat, 16 Dec 2017 00:02:09 GMT", "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; param=drax-preview; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.056389", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C2F8:04D3:D12725:16EC0DA:5A4B99BE"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/fork_this"}, "recorded_at": "2018-01-02T14:39:58"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"title\": \"Test create pull from issue\"}"}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token ", "Content-Length": "40"}, "method": "POST", "uri": "https://api.github.com/repos/github3py/fork_this/issues"}, "response": {"body": {"encoding": "utf-8", "string": "{\"url\":\"https://api.github.com/repos/github3py/fork_this/issues/17\",\"repository_url\":\"https://api.github.com/repos/github3py/fork_this\",\"labels_url\":\"https://api.github.com/repos/github3py/fork_this/issues/17/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/github3py/fork_this/issues/17/comments\",\"events_url\":\"https://api.github.com/repos/github3py/fork_this/issues/17/events\",\"html_url\":\"https://github.com/github3py/fork_this/issues/17\",\"id\":285445073,\"number\":17,\"title\":\"Test create pull from issue\",\"user\":{\"login\":\"sigmavirus24\",\"id\":240830,\"avatar_url\":\"https://avatars3.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2018-01-02T14:39:58Z\",\"updated_at\":\"2018-01-02T14:39:58Z\",\"closed_at\":null,\"author_association\":\"OWNER\",\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":null}"}, "headers": {"Server": "GitHub.com", "Date": "Tue, 02 Jan 2018 14:39:59 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1728", "Status": "201 Created", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4995", "X-RateLimit-Reset": "1514906951", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"778dc4a7e68ef942ea5fcdd8733c72a9\"", "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/github3py/fork_this/issues/17", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.169080", "X-GitHub-Request-Id": "C2F8:04D3:D12730:16EC0EF:5A4B99BE"}, "status": {"code": 201, "message": "Created"}, "url": "https://api.github.com/repos/github3py/fork_this/issues"}, "recorded_at": "2018-01-02T14:39:59"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"issue\": 17, \"base\": \"master\", \"head\": \"sigmavirus24:master\"}"}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token ", "Content-Length": "62"}, "method": "POST", "uri": "https://api.github.com/repos/github3py/fork_this/pulls"}, "response": {"body": {"encoding": "utf-8", "string": "{\"url\":\"https://api.github.com/repos/github3py/fork_this/pulls/17\",\"id\":160737276,\"html_url\":\"https://github.com/github3py/fork_this/pull/17\",\"diff_url\":\"https://github.com/github3py/fork_this/pull/17.diff\",\"patch_url\":\"https://github.com/github3py/fork_this/pull/17.patch\",\"issue_url\":\"https://api.github.com/repos/github3py/fork_this/issues/17\",\"number\":17,\"state\":\"open\",\"locked\":false,\"title\":\"Test create pull from issue\",\"user\":{\"login\":\"sigmavirus24\",\"id\":240830,\"avatar_url\":\"https://avatars3.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"body\":null,\"created_at\":\"2018-01-02T14:39:59Z\",\"updated_at\":\"2018-01-02T14:39:59Z\",\"closed_at\":null,\"merged_at\":null,\"merge_commit_sha\":null,\"assignee\":null,\"assignees\":[],\"requested_reviewers\":[],\"milestone\":null,\"commits_url\":\"https://api.github.com/repos/github3py/fork_this/pulls/17/commits\",\"review_comments_url\":\"https://api.github.com/repos/github3py/fork_this/pulls/17/comments\",\"review_comment_url\":\"https://api.github.com/repos/github3py/fork_this/pulls/comments{/number}\",\"comments_url\":\"https://api.github.com/repos/github3py/fork_this/issues/17/comments\",\"statuses_url\":\"https://api.github.com/repos/github3py/fork_this/statuses/88bb238be974a53f73235cbecf759da6e91cb8fc\",\"head\":{\"label\":\"sigmavirus24:master\",\"ref\":\"master\",\"sha\":\"88bb238be974a53f73235cbecf759da6e91cb8fc\",\"user\":{\"login\":\"sigmavirus24\",\"id\":240830,\"avatar_url\":\"https://avatars3.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":83230560,\"name\":\"fork_this\",\"full_name\":\"sigmavirus24/fork_this\",\"owner\":{\"login\":\"sigmavirus24\",\"id\":240830,\"avatar_url\":\"https://avatars3.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/sigmavirus24/fork_this\",\"description\":\"A repository to test forking of\",\"fork\":true,\"url\":\"https://api.github.com/repos/sigmavirus24/fork_this\",\"forks_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/forks\",\"keys_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/teams\",\"hooks_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/hooks\",\"issue_events_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/events\",\"assignees_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/tags\",\"blobs_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/languages\",\"stargazers_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/stargazers\",\"contributors_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/contributors\",\"subscribers_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/subscribers\",\"subscription_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/subscription\",\"commits_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/merges\",\"archive_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/downloads\",\"issues_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/deployments\",\"created_at\":\"2017-02-26T18:21:59Z\",\"updated_at\":\"2014-11-24T03:19:54Z\",\"pushed_at\":\"2017-02-26T18:22:43Z\",\"git_url\":\"git://github.com/sigmavirus24/fork_this.git\",\"ssh_url\":\"git@github.com:sigmavirus24/fork_this.git\",\"clone_url\":\"https://github.com/sigmavirus24/fork_this.git\",\"svn_url\":\"https://github.com/sigmavirus24/fork_this\",\"homepage\":null,\"size\":1,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":false,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"archived\":false,\"open_issues_count\":0,\"license\":null,\"forks\":0,\"open_issues\":0,\"watchers\":0,\"default_branch\":\"master\"}},\"base\":{\"label\":\"github3py:master\",\"ref\":\"master\",\"sha\":\"646fc846229268a14f4510480614f395de5cdcbc\",\"user\":{\"login\":\"github3py\",\"id\":1782156,\"avatar_url\":\"https://avatars0.githubusercontent.com/u/1782156?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/github3py\",\"html_url\":\"https://github.com/github3py\",\"followers_url\":\"https://api.github.com/users/github3py/followers\",\"following_url\":\"https://api.github.com/users/github3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/github3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/github3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/github3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/github3py/orgs\",\"repos_url\":\"https://api.github.com/users/github3py/repos\",\"events_url\":\"https://api.github.com/users/github3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/github3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"repo\":{\"id\":5816984,\"name\":\"fork_this\",\"full_name\":\"github3py/fork_this\",\"owner\":{\"login\":\"github3py\",\"id\":1782156,\"avatar_url\":\"https://avatars0.githubusercontent.com/u/1782156?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/github3py\",\"html_url\":\"https://github.com/github3py\",\"followers_url\":\"https://api.github.com/users/github3py/followers\",\"following_url\":\"https://api.github.com/users/github3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/github3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/github3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/github3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/github3py/orgs\",\"repos_url\":\"https://api.github.com/users/github3py/repos\",\"events_url\":\"https://api.github.com/users/github3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/github3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/github3py/fork_this\",\"description\":\"A repository to test forking of\",\"fork\":false,\"url\":\"https://api.github.com/repos/github3py/fork_this\",\"forks_url\":\"https://api.github.com/repos/github3py/fork_this/forks\",\"keys_url\":\"https://api.github.com/repos/github3py/fork_this/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/github3py/fork_this/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/github3py/fork_this/teams\",\"hooks_url\":\"https://api.github.com/repos/github3py/fork_this/hooks\",\"issue_events_url\":\"https://api.github.com/repos/github3py/fork_this/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/github3py/fork_this/events\",\"assignees_url\":\"https://api.github.com/repos/github3py/fork_this/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/github3py/fork_this/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/github3py/fork_this/tags\",\"blobs_url\":\"https://api.github.com/repos/github3py/fork_this/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/github3py/fork_this/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/github3py/fork_this/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/github3py/fork_this/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/github3py/fork_this/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/github3py/fork_this/languages\",\"stargazers_url\":\"https://api.github.com/repos/github3py/fork_this/stargazers\",\"contributors_url\":\"https://api.github.com/repos/github3py/fork_this/contributors\",\"subscribers_url\":\"https://api.github.com/repos/github3py/fork_this/subscribers\",\"subscription_url\":\"https://api.github.com/repos/github3py/fork_this/subscription\",\"commits_url\":\"https://api.github.com/repos/github3py/fork_this/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/github3py/fork_this/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/github3py/fork_this/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/github3py/fork_this/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/github3py/fork_this/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/github3py/fork_this/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/github3py/fork_this/merges\",\"archive_url\":\"https://api.github.com/repos/github3py/fork_this/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/github3py/fork_this/downloads\",\"issues_url\":\"https://api.github.com/repos/github3py/fork_this/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/github3py/fork_this/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/github3py/fork_this/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/github3py/fork_this/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/github3py/fork_this/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/github3py/fork_this/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/github3py/fork_this/deployments\",\"created_at\":\"2012-09-15T02:40:33Z\",\"updated_at\":\"2017-12-16T00:02:09Z\",\"pushed_at\":\"2017-12-16T00:02:07Z\",\"git_url\":\"git://github.com/github3py/fork_this.git\",\"ssh_url\":\"git@github.com:github3py/fork_this.git\",\"clone_url\":\"https://github.com/github3py/fork_this.git\",\"svn_url\":\"https://github.com/github3py/fork_this\",\"homepage\":null,\"size\":2,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"archived\":false,\"open_issues_count\":12,\"license\":null,\"forks\":1,\"open_issues\":12,\"watchers\":0,\"default_branch\":\"master\"}},\"_links\":{\"self\":{\"href\":\"https://api.github.com/repos/github3py/fork_this/pulls/17\"},\"html\":{\"href\":\"https://github.com/github3py/fork_this/pull/17\"},\"issue\":{\"href\":\"https://api.github.com/repos/github3py/fork_this/issues/17\"},\"comments\":{\"href\":\"https://api.github.com/repos/github3py/fork_this/issues/17/comments\"},\"review_comments\":{\"href\":\"https://api.github.com/repos/github3py/fork_this/pulls/17/comments\"},\"review_comment\":{\"href\":\"https://api.github.com/repos/github3py/fork_this/pulls/comments{/number}\"},\"commits\":{\"href\":\"https://api.github.com/repos/github3py/fork_this/pulls/17/commits\"},\"statuses\":{\"href\":\"https://api.github.com/repos/github3py/fork_this/statuses/88bb238be974a53f73235cbecf759da6e91cb8fc\"}},\"author_association\":\"OWNER\",\"body_html\":null,\"body_text\":null,\"merged\":false,\"mergeable\":null,\"rebaseable\":null,\"mergeable_state\":\"unknown\",\"merged_by\":null,\"comments\":0,\"review_comments\":0,\"maintainer_can_modify\":true,\"commits\":1,\"additions\":3,\"deletions\":0,\"changed_files\":1}"}, "headers": {"Server": "GitHub.com", "Date": "Tue, 02 Jan 2018 14:39:59 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "14721", "Status": "201 Created", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4994", "X-RateLimit-Reset": "1514906951", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"981ebfa6840208a9c78a63372525848d\"", "X-OAuth-Scopes": "admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/github3py/fork_this/pulls/17", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.513784", "X-GitHub-Request-Id": "C2F8:04D3:D1274F:16EC11E:5A4B99BF"}, "status": {"code": 201, "message": "Created"}, "url": "https://api.github.com/repos/github3py/fork_this/pulls"}, "recorded_at": "2018-01-02T14:39:59"}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/github3py/fork_this"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1YTW/jNhD9K4GvdSI7X5sYWGwLbLpogTZAkcN2i0KgJNrihhJVkrLrCPnvfUNSlmRsvuRLD3vYhczwPT4OZ8iZaSYimywuruaX11fn00mpMh7TyOS3jzebW/mrTD9dP7DPf6zT8n5++/Hm9PZuNZtgIis4Zi2Vvo9tLgyGlrWUcRhfCZvXyVm1jfozKi3WzAK3ZNLw6URtSq4ni2Yi1UqUoNvBQEcq5u+uTucXl3u6trf319svpz/X7HOVZ5/kOvl6c3b78Zd/f7/78z2QDIswHddagjK3tjKLKPKD5sQvURuuU1VaXtqTVBVRHYWlPqzfn4NipQOJswUG9sgqEYg8Gmwm6ovPbSH3BPg/u/n9mUslpdoAv6/32SVg1gAjw7tvUa7GUADWRMrmHAbDNh5p88LYN8pxkAYbMxbuQyQGR6B59jZJAQRB5BmPTaR5pRxbnZhUi8oKVb5R2gAKKqVXrBQPbAQVoOToJOqNIhwEUL6Gx70R6zFN5KIn3ZI5NE+5WMO6Y/j2wKCz24qC+bZnGbK5sDxmWUGR6QL2cYpoepVfD6I+47ujwyI/HTlbCKv09siqI8uNPaJLAo54pJZYl37srohn484xddE0WJVYXjD0k3BHRMd1z7ejOQjbRPg/BESKKGWJ0gw7H006IGmi/k/yC8tZMZrbgUGSKzXecg4MEmFMzV/lnk+fguMwUev/ZV0k/oJ6jdc/TevR0MiMEauS89EW2xE0UXt3JpqVaT6essU3kf9yp8pWoyUSFhSJVMloDjxXkSNoIpMz/0LY+BBVxEj4AaHmy4MkEn5HaPUB5+rkEcGODg+TxRGP1tfioyZYULJyVbPVeMYdAU6Xns0Ve3gxiXg6JjoG0FFipEVSH3ZRdRyk0L/fiN/xJuwoOkKXEDyfYzyz6V5S4bZdFOKlx/lptgAfuPSBlOSH+7T0++Uc4nmZhG+i7j71l3VgHmvNcFu3+vr8IdMeffQtPmp+qJjN6QbCMhXTfKzYAI+ahCGvOTk5aXLOXN5acH1AVHo0aJhOc2RoY/U1LR6ZSMGsy4SXJC9DZiwVy0bbckcAMn9kYzV6dP+cK1SAo4U5cJ+tEBK5oSrH35EdQ5+3VFYsRfqaAuDpMBqQNB+MKFM+ZVJO4ZVWpAJ+ioSWTgxJHx9vFY+GfNTbPvOXHC472sqae3wT+TIt45VU24NulB4FBabmKPGzmFkk+6ez+enx7Pp4fnE3O12czxZnZ18wp66ywZx3x5g2v7ybzRaYNrumOVVt8h7N1fHs/Hh+TTTzs8X5JU3B9Rh8F18o8b9VYXc1ARXsABmTd6AfO8jCfw5aFgGSSjjhXpS8bq31/tv0PAzyclXwCnnBZFEiHqgIe8D3fPDGp6ouYd3ZdLJhFskm3tRuqM0LWoKcmdhH6mRhdY2uC41UWn3lqTX9se5m6E3ciHsxAFLOsqvOfJEVFofIQmitQufF6w/3GLoooeeTCcMSybsBVfEyKGy3MUcnSoqUl2ZnB4SW2sShTmwFCRNbXlSy31OyqhIpFP7193SyFkYkQgq7hS9WdQJOmNgXd2TT3tKwMRZt7emMm/Elq6WNfSIOhoIZi34VfJPrAjalXgR1r0KN7K1bMFFa/Gs1kh+338iq3NH6mXTh+W8U1rSP2DuaVfecmmFYyO/a/FMzeK17W1qw/4sbgtUocRn+RXN62b6FYcjr2vH2THApoNb3G42RUIWl2jZdvy/wvVv3vVsXWrvfu3XUOR72fnfdiv9Dt67kdkMN+u6C7tdhYfTs8T/DaarFBBgAAA==", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:35:56 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"a49dfac1d491082efbf62c251fe7159140ee28bcb343369af045314231f5ea7f\""], "Last-Modified": ["Sat, 16 Dec 2017 00:02:09 GMT"], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": ["repo"], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4992"], "X-RateLimit-Reset": ["1635716613"], "X-RateLimit-Used": ["8"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["BE94:7930:F13E1:5BF904:617F0C3C"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/fork_this"}, "recorded_at": "2021-10-31T21:35:56"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"title\": \"Test create pull from issue\"}"}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Content-Length": ["40"], "Authorization": ["token "]}, "method": "POST", "uri": "https://api.github.com/repos/github3py/fork_this/issues"}, "response": {"body": {"encoding": "utf-8", "string": "{\"url\":\"https://api.github.com/repos/github3py/fork_this/issues/22\",\"repository_url\":\"https://api.github.com/repos/github3py/fork_this\",\"labels_url\":\"https://api.github.com/repos/github3py/fork_this/issues/22/labels{/name}\",\"comments_url\":\"https://api.github.com/repos/github3py/fork_this/issues/22/comments\",\"events_url\":\"https://api.github.com/repos/github3py/fork_this/issues/22/events\",\"html_url\":\"https://github.com/github3py/fork_this/issues/22\",\"id\":1040587883,\"node_id\":\"I_kwDOAFjCmM4-Bhxr\",\"number\":22,\"title\":\"Test create pull from issue\",\"user\":{\"login\":\"sigmavirus24\",\"id\":240830,\"node_id\":\"MDQ6VXNlcjI0MDgzMA==\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"labels\":[],\"state\":\"open\",\"locked\":false,\"assignee\":null,\"assignees\":[],\"milestone\":null,\"comments\":0,\"created_at\":\"2021-10-31T21:35:56Z\",\"updated_at\":\"2021-10-31T21:35:56Z\",\"closed_at\":null,\"author_association\":\"MEMBER\",\"active_lock_reason\":null,\"body_html\":null,\"body_text\":null,\"body\":null,\"closed_by\":null,\"reactions\":{\"url\":\"https://api.github.com/repos/github3py/fork_this/issues/22/reactions\",\"total_count\":0,\"+1\":0,\"-1\":0,\"laugh\":0,\"hooray\":0,\"confused\":0,\"heart\":0,\"rocket\":0,\"eyes\":0},\"timeline_url\":\"https://api.github.com/repos/github3py/fork_this/issues/22/timeline\",\"performed_via_github_app\":null}"}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:35:57 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Content-Length": ["2121"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["\"4e0e0e2ad67890c985f0a679287f2a8f3bc0eccf45ad5a4b5e059069e4e4cd6b\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "Location": ["https://api.github.com/repos/github3py/fork_this/issues/22"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4991"], "X-RateLimit-Reset": ["1635716613"], "X-RateLimit-Used": ["9"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "X-GitHub-Request-Id": ["BE94:7930:F13E2:5BF909:617F0C3C"]}, "status": {"code": 201, "message": "Created"}, "url": "https://api.github.com/repos/github3py/fork_this/issues"}, "recorded_at": "2021-10-31T21:35:57"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"issue\": 22, \"base\": \"master\", \"head\": \"sigmavirus24:master\"}"}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Content-Length": ["62"], "Authorization": ["token "]}, "method": "POST", "uri": "https://api.github.com/repos/github3py/fork_this/pulls"}, "response": {"body": {"encoding": "utf-8", "string": "{\"url\":\"https://api.github.com/repos/github3py/fork_this/pulls/22\",\"id\":770020531,\"node_id\":\"PR_kwDOAFjCmM4t5ZSz\",\"html_url\":\"https://github.com/github3py/fork_this/pull/22\",\"diff_url\":\"https://github.com/github3py/fork_this/pull/22.diff\",\"patch_url\":\"https://github.com/github3py/fork_this/pull/22.patch\",\"issue_url\":\"https://api.github.com/repos/github3py/fork_this/issues/22\",\"number\":22,\"state\":\"open\",\"locked\":false,\"title\":\"Test create pull from issue\",\"user\":{\"login\":\"sigmavirus24\",\"id\":240830,\"node_id\":\"MDQ6VXNlcjI0MDgzMA==\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"body\":null,\"created_at\":\"2021-10-31T21:35:57Z\",\"updated_at\":\"2021-10-31T21:35:57Z\",\"closed_at\":null,\"merged_at\":null,\"merge_commit_sha\":null,\"assignee\":null,\"assignees\":[],\"requested_reviewers\":[],\"requested_teams\":[],\"labels\":[],\"milestone\":null,\"draft\":false,\"commits_url\":\"https://api.github.com/repos/github3py/fork_this/pulls/22/commits\",\"review_comments_url\":\"https://api.github.com/repos/github3py/fork_this/pulls/22/comments\",\"review_comment_url\":\"https://api.github.com/repos/github3py/fork_this/pulls/comments{/number}\",\"comments_url\":\"https://api.github.com/repos/github3py/fork_this/issues/22/comments\",\"statuses_url\":\"https://api.github.com/repos/github3py/fork_this/statuses/88bb238be974a53f73235cbecf759da6e91cb8fc\",\"head\":{\"label\":\"sigmavirus24:master\",\"ref\":\"master\",\"sha\":\"88bb238be974a53f73235cbecf759da6e91cb8fc\",\"user\":{\"login\":\"sigmavirus24\",\"id\":240830,\"node_id\":\"MDQ6VXNlcjI0MDgzMA==\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":83230560,\"node_id\":\"MDEwOlJlcG9zaXRvcnk4MzIzMDU2MA==\",\"name\":\"fork_this\",\"full_name\":\"sigmavirus24/fork_this\",\"private\":false,\"owner\":{\"login\":\"sigmavirus24\",\"id\":240830,\"node_id\":\"MDQ6VXNlcjI0MDgzMA==\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"html_url\":\"https://github.com/sigmavirus24/fork_this\",\"description\":\"A repository to test forking of\",\"fork\":true,\"url\":\"https://api.github.com/repos/sigmavirus24/fork_this\",\"forks_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/forks\",\"keys_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/teams\",\"hooks_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/hooks\",\"issue_events_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/events\",\"assignees_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/tags\",\"blobs_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/languages\",\"stargazers_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/stargazers\",\"contributors_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/contributors\",\"subscribers_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/subscribers\",\"subscription_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/subscription\",\"commits_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/merges\",\"archive_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/downloads\",\"issues_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/sigmavirus24/fork_this/deployments\",\"created_at\":\"2017-02-26T18:21:59Z\",\"updated_at\":\"2014-11-24T03:19:54Z\",\"pushed_at\":\"2017-02-26T18:22:43Z\",\"git_url\":\"git://github.com/sigmavirus24/fork_this.git\",\"ssh_url\":\"git@github.com:sigmavirus24/fork_this.git\",\"clone_url\":\"https://github.com/sigmavirus24/fork_this.git\",\"svn_url\":\"https://github.com/sigmavirus24/fork_this\",\"homepage\":null,\"size\":1,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":false,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"archived\":false,\"disabled\":false,\"open_issues_count\":0,\"license\":null,\"allow_forking\":true,\"is_template\":false,\"topics\":[],\"visibility\":\"public\",\"forks\":0,\"open_issues\":0,\"watchers\":0,\"default_branch\":\"master\"}},\"base\":{\"label\":\"github3py:master\",\"ref\":\"master\",\"sha\":\"646fc846229268a14f4510480614f395de5cdcbc\",\"user\":{\"login\":\"github3py\",\"id\":1782156,\"node_id\":\"MDEyOk9yZ2FuaXphdGlvbjE3ODIxNTY=\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/1782156?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/github3py\",\"html_url\":\"https://github.com/github3py\",\"followers_url\":\"https://api.github.com/users/github3py/followers\",\"following_url\":\"https://api.github.com/users/github3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/github3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/github3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/github3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/github3py/orgs\",\"repos_url\":\"https://api.github.com/users/github3py/repos\",\"events_url\":\"https://api.github.com/users/github3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/github3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"repo\":{\"id\":5816984,\"node_id\":\"MDEwOlJlcG9zaXRvcnk1ODE2OTg0\",\"name\":\"fork_this\",\"full_name\":\"github3py/fork_this\",\"private\":false,\"owner\":{\"login\":\"github3py\",\"id\":1782156,\"node_id\":\"MDEyOk9yZ2FuaXphdGlvbjE3ODIxNTY=\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/1782156?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/github3py\",\"html_url\":\"https://github.com/github3py\",\"followers_url\":\"https://api.github.com/users/github3py/followers\",\"following_url\":\"https://api.github.com/users/github3py/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/github3py/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/github3py/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/github3py/subscriptions\",\"organizations_url\":\"https://api.github.com/users/github3py/orgs\",\"repos_url\":\"https://api.github.com/users/github3py/repos\",\"events_url\":\"https://api.github.com/users/github3py/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/github3py/received_events\",\"type\":\"Organization\",\"site_admin\":false},\"html_url\":\"https://github.com/github3py/fork_this\",\"description\":\"A repository to test forking of\",\"fork\":false,\"url\":\"https://api.github.com/repos/github3py/fork_this\",\"forks_url\":\"https://api.github.com/repos/github3py/fork_this/forks\",\"keys_url\":\"https://api.github.com/repos/github3py/fork_this/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/github3py/fork_this/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/github3py/fork_this/teams\",\"hooks_url\":\"https://api.github.com/repos/github3py/fork_this/hooks\",\"issue_events_url\":\"https://api.github.com/repos/github3py/fork_this/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/github3py/fork_this/events\",\"assignees_url\":\"https://api.github.com/repos/github3py/fork_this/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/github3py/fork_this/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/github3py/fork_this/tags\",\"blobs_url\":\"https://api.github.com/repos/github3py/fork_this/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/github3py/fork_this/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/github3py/fork_this/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/github3py/fork_this/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/github3py/fork_this/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/github3py/fork_this/languages\",\"stargazers_url\":\"https://api.github.com/repos/github3py/fork_this/stargazers\",\"contributors_url\":\"https://api.github.com/repos/github3py/fork_this/contributors\",\"subscribers_url\":\"https://api.github.com/repos/github3py/fork_this/subscribers\",\"subscription_url\":\"https://api.github.com/repos/github3py/fork_this/subscription\",\"commits_url\":\"https://api.github.com/repos/github3py/fork_this/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/github3py/fork_this/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/github3py/fork_this/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/github3py/fork_this/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/github3py/fork_this/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/github3py/fork_this/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/github3py/fork_this/merges\",\"archive_url\":\"https://api.github.com/repos/github3py/fork_this/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/github3py/fork_this/downloads\",\"issues_url\":\"https://api.github.com/repos/github3py/fork_this/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/github3py/fork_this/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/github3py/fork_this/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/github3py/fork_this/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/github3py/fork_this/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/github3py/fork_this/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/github3py/fork_this/deployments\",\"created_at\":\"2012-09-15T02:40:33Z\",\"updated_at\":\"2017-12-16T00:02:09Z\",\"pushed_at\":\"2018-04-19T02:13:46Z\",\"git_url\":\"git://github.com/github3py/fork_this.git\",\"ssh_url\":\"git@github.com:github3py/fork_this.git\",\"clone_url\":\"https://github.com/github3py/fork_this.git\",\"svn_url\":\"https://github.com/github3py/fork_this\",\"homepage\":null,\"size\":1,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":true,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":1,\"mirror_url\":null,\"archived\":false,\"disabled\":false,\"open_issues_count\":15,\"license\":null,\"allow_forking\":true,\"is_template\":false,\"topics\":[],\"visibility\":\"public\",\"forks\":1,\"open_issues\":15,\"watchers\":0,\"default_branch\":\"master\"}},\"_links\":{\"self\":{\"href\":\"https://api.github.com/repos/github3py/fork_this/pulls/22\"},\"html\":{\"href\":\"https://github.com/github3py/fork_this/pull/22\"},\"issue\":{\"href\":\"https://api.github.com/repos/github3py/fork_this/issues/22\"},\"comments\":{\"href\":\"https://api.github.com/repos/github3py/fork_this/issues/22/comments\"},\"review_comments\":{\"href\":\"https://api.github.com/repos/github3py/fork_this/pulls/22/comments\"},\"review_comment\":{\"href\":\"https://api.github.com/repos/github3py/fork_this/pulls/comments{/number}\"},\"commits\":{\"href\":\"https://api.github.com/repos/github3py/fork_this/pulls/22/commits\"},\"statuses\":{\"href\":\"https://api.github.com/repos/github3py/fork_this/statuses/88bb238be974a53f73235cbecf759da6e91cb8fc\"}},\"author_association\":\"MEMBER\",\"auto_merge\":null,\"body_html\":null,\"body_text\":null,\"active_lock_reason\":null,\"merged\":false,\"mergeable\":null,\"rebaseable\":null,\"mergeable_state\":\"unknown\",\"merged_by\":null,\"comments\":0,\"review_comments\":0,\"maintainer_can_modify\":true,\"commits\":1,\"additions\":3,\"deletions\":0,\"changed_files\":1}"}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:35:57 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Content-Length": ["15299"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["\"1b5be3569d6cc66c79ed2ce141dd7e0670a83b335e70e1fdfc210691ddeb41e9\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "Location": ["https://api.github.com/repos/github3py/fork_this/pulls/22"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4990"], "X-RateLimit-Reset": ["1635716613"], "X-RateLimit-Used": ["10"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "X-GitHub-Request-Id": ["BE94:7930:F13E4:5BF913:617F0C3D"]}, "status": {"code": 201, "message": "Created"}, "url": "https://api.github.com/repos/github3py/fork_this/pulls"}, "recorded_at": "2021-10-31T21:35:57"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/Repository_pull_request.json b/tests/cassettes/Repository_pull_request.json index c45d4841d..e6092f251 100644 --- a/tests/cassettes/Repository_pull_request.json +++ b/tests/cassettes/Repository_pull_request.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.drax-preview+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA62YQXOzNhCG/4qHax0Lm3jij5nO157a3r5DeunFI4Ns1IDESMIeh8l/7ysJMLhTO456ySRE++hltbvsqo14HqXJyzJ+WS7nkaAVi9LowE3R7JJFfY7m0b4py233D80PFT1y1ejVM5mskifBVJS2USkPXIAxXgqK3Wb1HG+SeB7RIzVUbRtVYl1hTK1TQvxDnSw8ttFMZVIYJswikxVpiLf+fvz5GbiD6iCWG+HBFazmHccbA6bJlaLCVOWVBr+1M7lavJdlKU+gXKu+txEZLK0rHYWLwxcpsGyJNAWD8/BKH9YRXJvHRTmrFieozZbnlqNxIorlDwvr7CDLBsBHSxSrpQM2O50pXhsuxeMCJ9agSXWggr/Tr9FgrQGx0h6X4qxgzY6IxcfNvVlLasWPNDtb1yiWMX6Es7+IvLIH0Zxrm7d/Iiis67lhW5pXNg/3tNTsYx657Q0WuQdzpN1no3+a5zkbThUb/jibQopZyXeKqvNsL9WMI2fVnmaI1dkJdWSGcJ39xs3vzW72648/jgkEYt3boORm5jrnT5JxKseS7pzJTQTSEwBIemPnII61bwl+dvmUIdXpTipq5L2icVvgBNSS8Z82lgyjVZBwBwCokDLMkw4AENe6YZ8K7dsv7jia9PkjmmrnS95nsuY22hOglWrUecFYkAcHSEv6qox0EFkRhu0ZLfG/udOmhyCp1h6YXSl3QRx8KImDtEQX1H+HzDZUnaVaxgSq2D5YqmUMUKMCz9vJtJABiY+gwdEH6ewZpO08WlJxaOghjDpAcOr2U32g73ebmNu5c6EAaTs0xXdNeJG7cKxS3zsg38NcesFcoK4hud3m3HHAqLFxLqgqfq8vuE3sEJOw/x+wNk6v0fbv+23MfbmW0ZJLTfZFv6OHeLer+r3O8R7dOBAUEj2DtD/V1BS2cmGrmioWIrpDkHZH0WwtFou2YNS11RVTgRnsCUBRlRXoGkN0tj0DXU9FjevW91Zmju69lDQP8u0AAdAfY4hWTxiff41BNEigA4yJFS+ZNlKE1dgLZcwW0vA9zz4zsdxOtwmo/a65yNicluUcUWt4xhHH6LXtKaLhZGEe8gS8Bu4B/KRSMoR0kNcV84yW+EkzZ3Upz8FVaISxSawYppt8Sw2mklW8XD3FydMyeV1+S9ebdJ38hTVNnU/WbJ7i5VO8fo3X6SpOk5VdUze6GGH8kudX/D+O03Vsl6CsdnGN33BxgZ+4LPnXpcFoTrFXETDUurgY/nIxS//jVqUzy0oE6FUmfX7P4/W37r4ppBayYjV6j9H9jLdL6vMCrs4x1OUy0wsu7Yvxd6xcbl6W3yZdRiYbgfN4ed7MoxM1aIjxPR8/7LuTYZK0W1O99bkfpUY1dlTFk1rJv1lm9PjZpd6MFp74G78MudbStlDDEz8vdhpWG1xGVVwp2V1GCRSIodDiYqmblWXNRKepl7+M18g3njGh8erezo+SqaOOTOAZu7h3QOePnO1pU5qt7+3hgBxDSSlreEAwc8JU2m/leOOOqFOfrD/+AYH/BhO+EwAA", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Fri, 05 Jan 2018 15:26:33 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "55", "X-RateLimit-Reset": "1515169065", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"3c51b19800be233416ee59dec2cae10e\"", "Last-Modified": "Fri, 05 Jan 2018 05:20:32 GMT", "X-GitHub-Media-Type": "github.v3; param=drax-preview; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.053392", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "90E4:2D7EC:579F54:134A9A5:5A4F9929"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py"}, "recorded_at": "2018-01-05T15:26:33"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/546"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Fri, 05 Jan 2018 15:26:33 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "54", "X-RateLimit-Reset": "1515169065", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"df3dbdca076e6339979f0bdd3fe1a15f\"", "Last-Modified": "Thu, 04 Jan 2018 09:34:37 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.237306", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "90E4:2D7EC:579F5F:134A9CB:5A4F9929"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/546"}, "recorded_at": "2018-01-05T15:26:33"}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA62YbW/bNhDHv4qgN31Rx7KjxEkNBF2ABm0GNOnabCs6DAYl0RYbShRIyq4t5LvvT1GPBmon1V4kkRjej8fj3el4hcsid+5fTCcX0+nITUVEF2bE/fjuZnPPf+fh+zc78vXzOkwfd3e7mw1+friYSBKKWSum4zzwx9kWY8uc80X1D8VWCVkzmavTM683K5NsTTSEl4QrOnLFJqXSnRcuFyuWgtkVBdVoc3o2ufQnffX+mP319Y6H328nH9+tdh+vr64wmQBN5CKXHKBY60zNPc8OqrFVI1dUhiLVNNXjUCRe7ln62/XVGQgrWTFKK2Bgj5WximOFAVPensaxTvieCnbpUmRv8lJwLjag7Ct9bCGvkTSmLyksXf0iBZKFJ3RMYTts6ckYgin9cqVKqQInrjT8yHAUDkTS6MWKVXJQyzjIU+FJmokSmAcqlCzTTKQvV7AnDZqQK5KyHfk1GqQVIEa1l6tSSkGaruGLLxe3YoVXBlS4NaaRNKRsDWP/InJPHkS9zUyc/wmnMKZnmi5IlJg4LcP3aYQoe6639/NARJtTxALOBzZybl8lDnE4CySRW2cppMMQp5KEGv7pbJBrnPe3+kMevFLO55svD871p1tMgQwCGkZksKND0sihciVSkbDQ2ZDt2Ll1NkI+OiJ1Pm11jD/+ePZ6jP1giccmER0M9PKserHb340hHTnCgwhEMwBQ6ZFuB3GMfOHhdxV+ITIDCYQkWhzLMYcV7IEKr/tqXE9TkgxSvAQAFAsxzJIlACCmVE6fFQmHN15ylFeHW5ongc2Qzwmyw2hLgK5E4bOQUjrIgg2k8OokjkhKw3gYtmYUnn0qT5usBqlq5IEJuAgGcfBd9UpI4amY2M+WXgzVzlANoweVdDlYVcNooFoOPO9STQNpkPhmahz9ID1rhldUFuUkXeVkNYzaQHDq5su+IrujNc/h2GkpQJqCTrIgH57kWo7R1JYaiPdhJm0xLbSsXw5XRUcM0KmDShMkCTtWRhwmVoie2/8PWOOn+2jzfrzqOa6uYRRem5Nt0q/oQ6xbZf1az+4a1e1hkEvUDK94nREdm8yFpTIi6RClK4RXBAS12Xg8LmJKyio8QUk0LIItASgiwxhF5hA9i5qBqichuizul0bNCMU+FyQaZNsGAqA9xiG6WkL3/DPccwcpWAK6xIRxqrRIB55QQ+myU6HZkoXPueAcDrceqHirWBrSEeF8BK/VLGTwY5Tp5hRRcNJhFrIEbANtBnux4RQuPcjqklpG4dmLaUQzLraDs1AHY4JYUjQ3ogXRuNScTqanJxP/ZOo/TN/Mzy/n5/43zMmzqDvndHoynZz404fJZD6dzSenZk6Wq7jF9Kacg2SmIK1Wfo0ntDl+0mPo3FNM5wKCSsWt4G+t2PwnTZtKLORw0L1Iev6a6/1v3XFRqBqLhGaoPTrdHCvnj2HoCA2LSIRqzITZFtth3rk/Ozvr1RihyFOcxnQyw/iGaNTD+Jz3RuvqBMvYG6JZmqiFjX13rmWOTpUZyaT4TkOtumNtvulM3LBH1lwtS0lTQjUj9r5YKeFfXiBDMylF1bpKkSCaRIs+VNUqi5giAaftgMhoWilZb+gSbTLOQpoqGKMw10lsquzsYE9Vc+6+elVZ9MN2++7ur798ufn8cHt/ZxzUtM+sDt2GYDh7eM+/f/v7fPft4frKxd0f0S82C7MXRH5tEqYWmiYZ7zb5tMhYiN3/U3UMrfuidXhCMoaXrLyXNw/+rH28aB8v28c3eJTImdWfCmNGTkJu+gDuvyN3zRQLGGfa2CDLA9gF8+1Ne14avWNAd25MV/tH7S8RXZKc64W9+gCTEDQ/zHU3yRY2IrR4pOiHVPai2vQa6tMoF+lWkfWJ+0//AdEV3SR6FQAA", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:35:51 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"777c2e1d4972ad88b3acdde84f1d8575be0f8b642cad0a132e6bdc8ed131bf7e\""], "Last-Modified": ["Sun, 31 Oct 2021 00:16:02 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["56"], "X-RateLimit-Reset": ["1635719751"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["4"], "Accept-Ranges": ["bytes"], "Content-Length": ["1428"], "X-GitHub-Request-Id": ["BE98:78B5:C22D74:26D99BC:617F0C3F"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py"}, "recorded_at": "2021-10-31T21:35:59"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/546"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:36:00 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"b48421355acd22ef9a377d7d80ba300896fae3e8d4304df05484e7ad0f788780\""], "Last-Modified": ["Thu, 21 Oct 2021 18:50:17 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["55"], "X-RateLimit-Reset": ["1635719750"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["5"], "Accept-Ranges": ["bytes"], "Content-Length": ["3033"], "X-GitHub-Request-Id": ["BE98:78B5:C22D79:26D99C8:617F0C3F"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls/546"}, "recorded_at": "2021-10-31T21:36:00"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/Repository_pull_requests.json b/tests/cassettes/Repository_pull_requests.json index 070863886..5e92698fb 100644 --- a/tests/cassettes/Repository_pull_requests.json +++ b/tests/cassettes/Repository_pull_requests.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.drax-preview+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA62YQXOzNhCG/4qHax0Lm3jij5nO157a3r5DeunFI4Ns1IDESMIeh8l/7ysJMLhTO456ySRE++hltbvsqo14HqXJyzJ+WS7nkaAVi9LowE3R7JJFfY7m0b4py233D80PFT1y1ejVM5mskifBVJS2USkPXIAxXgqK3Wb1HG+SeB7RIzVUbRtVYl1hTK1TQvxDnSw8ttFMZVIYJswikxVpiLf+fvz5GbiD6iCWG+HBFazmHccbA6bJlaLCVOWVBr+1M7lavJdlKU+gXKu+txEZLK0rHYWLwxcpsGyJNAWD8/BKH9YRXJvHRTmrFieozZbnlqNxIorlDwvr7CDLBsBHSxSrpQM2O50pXhsuxeMCJ9agSXWggr/Tr9FgrQGx0h6X4qxgzY6IxcfNvVlLasWPNDtb1yiWMX6Es7+IvLIH0Zxrm7d/Iiis67lhW5pXNg/3tNTsYx657Q0WuQdzpN1no3+a5zkbThUb/jibQopZyXeKqvNsL9WMI2fVnmaI1dkJdWSGcJ39xs3vzW72648/jgkEYt3boORm5jrnT5JxKseS7pzJTQTSEwBIemPnII61bwl+dvmUIdXpTipq5L2icVvgBNSS8Z82lgyjVZBwBwCokDLMkw4AENe6YZ8K7dsv7jia9PkjmmrnS95nsuY22hOglWrUecFYkAcHSEv6qox0EFkRhu0ZLfG/udOmhyCp1h6YXSl3QRx8KImDtEQX1H+HzDZUnaVaxgSq2D5YqmUMUKMCz9vJtJABiY+gwdEH6ewZpO08WlJxaOghjDpAcOr2U32g73ebmNu5c6EAaTs0xXdNeJG7cKxS3zsg38NcesFcoK4hud3m3HHAqLFxLqgqfq8vuE3sEJOw/x+wNk6v0fbv+23MfbmW0ZJLTfZFv6OHeLer+r3O8R7dOBAUEj2DtD/V1BS2cmGrmioWIrpDkHZH0WwtFou2YNS11RVTgRnsCUBRlRXoGkN0tj0DXU9FjevW91Zmju69lDQP8u0AAdAfY4hWTxiff41BNEigA4yJFS+ZNlKE1dgLZcwW0vA9zz4zsdxOtwmo/a65yNicluUcUWt4xhHH6LXtKaLhZGEe8gS8Bu4B/KRSMoR0kNcV84yW+EkzZ3Upz8FVaISxSawYppt8Sw2mklW8XD3FydMyeV1+S9ebdJ38hTVNnU/WbJ7i5VO8fo3X6SpOk5VdUze6GGH8kudX/D+O03Vsl6CsdnGN33BxgZ+4LPnXpcFoTrFXETDUurgY/nIxS//jVqUzy0oE6FUmfX7P4/W37r4ppBayYjV6j9H9jLdL6vMCrs4x1OUy0wsu7Yvxd6xcbl6W3yZdRiYbgfN4ed7MoxM1aIjxPR8/7LuTYZK0W1O99bkfpUY1dlTFk1rJv1lm9PjZpd6MFp74G78MudbStlDDEz8vdhpWG1xGVVwp2V1GCRSIodDiYqmblWXNRKepl7+M18g3njGh8erezo+SqaOOTOAZu7h3QOePnO1pU5qt7+3hgBxDSSlreEAwc8JU2m/leOOOqFOfrD/+AYH/BhO+EwAA", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Fri, 05 Jan 2018 15:30:31 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "52", "X-RateLimit-Reset": "1515169065", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"3c51b19800be233416ee59dec2cae10e\"", "Last-Modified": "Fri, 05 Jan 2018 05:20:32 GMT", "X-GitHub-Media-Type": "github.v3; param=drax-preview; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.041080", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "EC0C:2D7EA:B97896:14357DD:5A4F9A17"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py"}, "recorded_at": "2018-01-05T15:30:31"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls?sort=created&direction=desc&per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Fri, 05 Jan 2018 15:30:31 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "51", "X-RateLimit-Reset": "1515169065", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"7bf5ee8d8eb6c198c579b1925f620ad5\"", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.583177", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "EC0C:2D7EA:B978A9:14357F2:5A4F9A17"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls?sort=created&direction=desc&per_page=100"}, "recorded_at": "2018-01-05T15:30:31"}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA62YbW/bNhDHv4qgN31Rx7KjxEkNBF2ABm0GNOnabCs6DAYl0RYbShRIyq4t5LvvT1GPBmon1V4kkRjej8fj3el4hcsid+5fTCcX0+nITUVEF2bE/fjuZnPPf+fh+zc78vXzOkwfd3e7mw1+friYSBKKWSum4zzwx9kWY8uc80X1D8VWCVkzmavTM683K5NsTTSEl4QrOnLFJqXSnRcuFyuWgtkVBdVoc3o2ufQnffX+mP319Y6H328nH9+tdh+vr64wmQBN5CKXHKBY60zNPc8OqrFVI1dUhiLVNNXjUCRe7ln62/XVGQgrWTFKK2Bgj5WximOFAVPensaxTvieCnbpUmRv8lJwLjag7Ct9bCGvkTSmLyksXf0iBZKFJ3RMYTts6ckYgin9cqVKqQInrjT8yHAUDkTS6MWKVXJQyzjIU+FJmokSmAcqlCzTTKQvV7AnDZqQK5KyHfk1GqQVIEa1l6tSSkGaruGLLxe3YoVXBlS4NaaRNKRsDWP/InJPHkS9zUyc/wmnMKZnmi5IlJg4LcP3aYQoe6639/NARJtTxALOBzZybl8lDnE4CySRW2cppMMQp5KEGv7pbJBrnPe3+kMevFLO55svD871p1tMgQwCGkZksKND0sihciVSkbDQ2ZDt2Ll1NkI+OiJ1Pm11jD/+ePZ6jP1giccmER0M9PKserHb340hHTnCgwhEMwBQ6ZFuB3GMfOHhdxV+ITIDCYQkWhzLMYcV7IEKr/tqXE9TkgxSvAQAFAsxzJIlACCmVE6fFQmHN15ylFeHW5ongc2Qzwmyw2hLgK5E4bOQUjrIgg2k8OokjkhKw3gYtmYUnn0qT5usBqlq5IEJuAgGcfBd9UpI4amY2M+WXgzVzlANoweVdDlYVcNooFoOPO9STQNpkPhmahz9ID1rhldUFuUkXeVkNYzaQHDq5su+IrujNc/h2GkpQJqCTrIgH57kWo7R1JYaiPdhJm0xLbSsXw5XRUcM0KmDShMkCTtWRhwmVoie2/8PWOOn+2jzfrzqOa6uYRRem5Nt0q/oQ6xbZf1az+4a1e1hkEvUDK94nREdm8yFpTIi6RClK4RXBAS12Xg8LmJKyio8QUk0LIItASgiwxhF5hA9i5qBqichuizul0bNCMU+FyQaZNsGAqA9xiG6WkL3/DPccwcpWAK6xIRxqrRIB55QQ+myU6HZkoXPueAcDrceqHirWBrSEeF8BK/VLGTwY5Tp5hRRcNJhFrIEbANtBnux4RQuPcjqklpG4dmLaUQzLraDs1AHY4JYUjQ3ogXRuNScTqanJxP/ZOo/TN/Mzy/n5/43zMmzqDvndHoynZz404fJZD6dzSenZk6Wq7jF9Kacg2SmIK1Wfo0ntDl+0mPo3FNM5wKCSsWt4G+t2PwnTZtKLORw0L1Iev6a6/1v3XFRqBqLhGaoPTrdHCvnj2HoCA2LSIRqzITZFtth3rk/Ozvr1RihyFOcxnQyw/iGaNTD+Jz3RuvqBMvYG6JZmqiFjX13rmWOTpUZyaT4TkOtumNtvulM3LBH1lwtS0lTQjUj9r5YKeFfXiBDMylF1bpKkSCaRIs+VNUqi5giAaftgMhoWilZb+gSbTLOQpoqGKMw10lsquzsYE9Vc+6+elVZ9MN2++7ur798ufn8cHt/ZxzUtM+sDt2GYDh7eM+/f/v7fPft4frKxd0f0S82C7MXRH5tEqYWmiYZ7zb5tMhYiN3/U3UMrfuidXhCMoaXrLyXNw/+rH28aB8v28c3eJTImdWfCmNGTkJu+gDuvyN3zRQLGGfa2CDLA9gF8+1Ne14avWNAd25MV/tH7S8RXZKc64W9+gCTEDQ/zHU3yRY2IrR4pOiHVPai2vQa6tMoF+lWkfWJ+0//AdEV3SR6FQAA", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:35:51 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"777c2e1d4972ad88b3acdde84f1d8575be0f8b642cad0a132e6bdc8ed131bf7e\""], "Last-Modified": ["Sun, 31 Oct 2021 00:16:02 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["54"], "X-RateLimit-Reset": ["1635719751"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["6"], "Accept-Ranges": ["bytes"], "Content-Length": ["1428"], "X-GitHub-Request-Id": ["BE9A:1399:C52232:25ACDE9:617F0C40"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py"}, "recorded_at": "2021-10-31T21:36:00"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/pulls?sort=created&direction=desc&per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+19C3fbxrntX8FV17lNUlPEg+/ruFet3dTnVnLiKKdJ6i4ZBEAJFkWwBChZ0sp/v/ubAUgAxAcSGCixW6xzUlMkZmMwAAaD2Y/5x+PRejU/mhxdRdEynHS79tI/vvSjq/X02AluuitvGYTd0L+8sW/91To0e135q3W8vO8u1/N52DV0yzp6duS7R5PBqK8bveGw9+xoEbjeBX13dPry1cc38z8Z028+fv/zj38xfv7xTD/7cGnge/3swdFR9iq6mV9kK5KqRNnuk727/mymgHBM5VGRpR05Vyo4AoBaIwzXXg6oUtsKgE3jLtY3U291NKG2fnYURnbkoWWDpbfAvuaBc+2hpWf2PPSeHUV+NKdfT1xXE+fPj4KV74Xa0r70F3bkB1RoHRLeIwrjS2x9619js86Dv3CuvMV1EJ/RoTGwevpgkD2h3w3+58ezufPB+Xj24VQ/ffmTic3tWzuyV/ljFl+G8TVFO3WCReQtInF5rbsJ/h9vv+4B43IVo4grh6pZdnUSXNgtqHn59VRQYBbM58Ed0PLVz94OxTvsbkqjwvKzv7hUQELpx24QXXloTRziL9QwfhjVq5wo+YjbNoxwPxIWLp/VynNrVTAui+rdLVCzR9FDCND1NHRW/pIur3oVzSAAMVhd2gv/QVyw9RCBEAJI3AS1jlaUBIJ3iyu2HoQs+thdrvxb27mnplp5juff4gQowOYwgBrdL+mu/4Hua5wOP/IubPeG7m3RL/zy7GgauPfY4tzDBaGFVziDWnRlR+gk/oWuJtKiQOtSk3Uf8b+/yL5f8xbuMvAX4tf0GdHu8JTQDF3X/5DtZZxgPXe1yL72tJtg5WEX3kIzNNRkHXnH71bvFvTf9wH9oPmuZ2t+SOA2uqtwvVwGq0ibBSt0Vh56rJV940Xeijag7eOqPqO/p55mT+fYQaDhYFfoErXgFpvu1vLKv7zSZBeqBbNMdY/RVs7KQ2H3wo7QOqZuGh19iP8/18cTY4D//xnbrJdufptxxzTPdWOiWxNjSNs48yCMYRZ4Mj47uvFWl7tfXKDnu/Gji/DKxv5sY+YMLN1weoZtG31LH+q9nj5y7em45w48dzzsDV3LHQLfDvEkXHg4yxI++Ts8mvzjn3RZidOIHa68W9+j3iz/Q+TZN/GXc3vqzePPN/4cBYPFBtld2TM0RvxAkfXdc/kfOlLoxmjiPqBqiubYf3tVwie4nR2U9wCH4Cc1fezKi4lu5iZqn3rWi+aJq0+PefT/Sg2fYHSnfVt3Bj3DHTjewJr1ncHMtoaDkWPoA910LMc2Bu5s6uKQrjwbT18MDegSKRgaTNKjiovMqGLlzVCA/11e8xXq0g5T0iOydpiSf0FhRmTtMIV7o2Ma7BMaplDvQd0PvQJYw/HY6vdMvPRkXijv3sz/e+58M36wf3x76yyuH84ervunDz/opx9Ov0YXtsCwAR3R9l0V383wTL6If8i/AqTearGlGKvRG1b8ABRj3fZlKXkvbHuhthfafe2W7wu4exTeaj6hXqjaFEK2/3C9zaswOiHtr/4z7fXvbzRbm/vTlb26p/cbDe9UeGlxIrzsy3epb15Hf11Pfx9qb199f66dfPsam6AM5kvw9uljTKjZC1fDK0WwCG58R7uz74+119pdsLrWgoX27X10hX+s48Ef6KUGu7g+mkSrNWaESidR5MC3vEMksIOGoSUwmCUBCGp27d0rYxHGYxf/G09pOJi/sacBXgKDfXM4e48XQ/AU2GPmTxrxi5eoQ14myhpDvolhrB0E6i0rQFAzOel4yP23vxHid5Lkjty+8DQDL1FQ581LrGqLboAeu8mkGW42ms1UPlkJzmNXfhJXgX2pjEsYgJrOg6kyFoY6XQH02MVLlpwyjC6aqCUhE04GGC96jVSZcDbA0cpTP1miugS0ga3yHl12z27epR/jFp7bi8s15qmUW2IDhKuBXl0u7Ye9c9H7b+EtEmBp2n3lT9fNdJBbLKqxnPoFQaHcECmoLbCYU1btHtKzy6I5aA5Oub4xTObWaAiaruM8fJXJprIruWgiSz484l9UWzt+ehTtJ+Z/Gmh6wSNhtvoPIN2u4rk4zBgfRLvtaR2C6T5ObcybHx8fP9KMGO1ATOgq11yiAM5eOVcgAlQb+zHBwQjrxo4EKTOj6rp4cZ0Htqtc4w0QQOWpVa2zRElPpAoyWRVWgKRRN1PbytBbpDT+Ioj8me8cQlLt77AzYI9/DMHFes9sMAm4HCPf8XGd422BzqycvVdtLYmCw8FsCaGuvLmHS165qRKcx64kHF1vOQ/uD57kL7s3U1DUi+8yN4OO2Ts3rIllTnp9hrlJbyPYneU6vGIIoP5EH9Mm6I7j5sYnCCVS+oSS+hLvjcJhmIgK8Pf/3Rad7C8KUmmR7yGq7fs2/+w8rDiqfRXceMTD4SU20YfIstYxGt4FIecGTnjsk1gg9B+wXd8cDUeZMQzowAWoJP3Z0R1JI2iMsP0qGfckjNaVHV7InmEz90ZfLVfBB88BpRO/z9J32y4p9eWdf+1nS9LobPONfI3d7v7GX62CWLEQU2qyR96KKVw/JJJx+wVpLuI6pg/Ed7xFiAZ4pNdbtJdg79Es8Xzjm/jPcOl+lKqYszcn33//6u356zdn2Ey8ocsqpOc5ncH5N/MPP/+9//Dz+cnXR+Bw0RsEdxd0IOgJkvbww4vIu1nO03OWUbD0nZjfu/VDf+rP/YhqtlxP576Dfcr3cTozqWPKnCnxh+vN7PU8upCvPgC4sUEyro5+IUYZvUWaKUordSY3Nshn6lSIEor/kPzP2Or1Z6PBuGeOBkNn2B/avamj2447mvamlmX1rEHP7XkkCMnzP+k94GeaIzZBl1qoaLrhEoHKa4hTLh9OT77+GhvXEqhIdAV5Sq7G5fNKuY0rzbRmZFK1JSkFKCpylJx2S0GKkkFqjt/JwqZFLLhiKktQMmhV5SeZwmK0gCocMt0iOZ1M8WZmUnM1yshWULf9kpMsl2PoQ8PYz+S8ujt7ePUR+PtYnNzFRapF0iWi5F4GJ1207UditWfBddT2IweKz9p+pFBAXHBJ1ZGuHf7U/FSZmJhKPoCK4Xu1g2kYBqIyBcPhKNMvHHBT1AuHX5l24YDqUi4cXgN0Cwddj2rh0BRpFg5WhWLhMKvSKxwO3nkVqJUy1Nq0ShloPUqlDLE+ncKhqlEpHGp9GoVDVKJQONA0FYOxZ0X6hENVo072oAoKBnWtwG1wiHlOA3dXrIg+aN6Rg6WbNA9dhS7hcIsojMpUCQfeEE3CwSdUSz2KhEe9UaZHOOw61AiH1QwtwqHXo0Q4NAU6hINUpEI42IZoEA7+KSgQbl8q9AeHqUh9cLCltIdhdnSrY1jnxnjSH036VjHtYegdyzjXdTK16GYh7bHdpA+kPbQHU9d9lEd5sT10R3nhsIzqYIrioVaD5sAENTyuKalGTCrATIHv80yH/HZLdhxJrR7tOkV4SK3ek/Ed1mgIArsZxmOE6XaQCJ8q5RHrvtG+kq7qwHlLk4JCIbn5YA22H8leJX+2RtuPY3xcwRkV/xPD0DcdZ06KzCPYrkrJFdHoGXqFmi65PsjPS9dLAcUC6oQIlou5v4C0D7RS6M3BozweXUk+RdWvDWyaUylATLGDzC0jfN/SeA0Y8egqwKntdgZmMuhqEHZrrAJ+znmmuputD75kL83sZHc4GjcXxEzN7IEs5huTHsCTVzVV9M0r38HuL7oB7DXu2dUFZh0Cx5fe9cnR2ZuzV7gn8VtwIUaMCXdKDtcLeV0fPV+++E2drs+7yxfvFqjFJ2N1pRqh2UQjRd5Hcrv+pi30abmASYoPLRaFKcBAa4d4UghG/pdnjWRk6PRcIbq6bwz7oL37470ZGeevrLPzS/Ps4Yc+ytaaAk+6arF3pYwMfdRMRgZwms/IEIe3zcjQpQTlkIyM28B3tTWUVpdktCBBoTZbBTfamRe9/bN2R951+es3PrkztJPlkqwZ2F1emXDqO1e2N/9/c+/mJj7V6Ep7PXOQM68l2oRXd6cP38Gw9tMD9WV1wjMSfAV1Qq7W5RdZbuNK6oR02fqBGQUoKuqEDJxSUEYGqTl1QhZWVZ2QQauqTsgUrq5OyBRvRp2Qq1F1dUIciPH37V1OGRPxaFyjoQf6g1jcqV3BfTVHvASZsDBLIbIm7la+8G9RMdp8G1iBhAp8t/CilaPNEK8Ai9d8TpEVJJwTGOKLBATFF5r3ERktBHdrz9cUnIFsjjsbuT2r4BZBGUk/RcAkSIaUbru/Y+0EKRr4RZaFc4z+kL0Y8jXuVgFwba2nG3LHV/YSQrZj7QfR9cFltkYABCxqdBDJkYoa4h1vLVM8UL8lVHioRxRco18E7NTzqDi6QvdYS6I9/uSBp0QWB/Al9sK7w8Z4S3imLYXAVPtH6JFm+Z//+Kewwtk4RGRBBOtwDm8cWsslLFGE0j3iKtwH698Dl9pe6D4luLte4k0UyrdNtMhXX50FkffVV9qf1pci62OFuBNKKwnWSDFBq2wiemRTxHx0ki0SiiphO9STquF6ke3PRUQJTl9yLjZ7+93vtP/BmcD0uPZ6IQXY+Jy0xbfyeONSk+TrjnZOpyouh0iS2LwXH6J84nz1lXU8Ou5/9RVbaukvNRQR7S9iUBboeXDOEpHm8l776itTPzaPeyUo262fbdrgmbbGpR1rCp+J65XyT9aRP0/2gl1+9ZVxbB3rW2w0xqm/8G/WN9pbDwftrh2fIlpefbQhT/SSAzFwtSLtBZe8v8D1iicw7rPYFimfs190EGOD9vmSDguHuJK3kmh181g7x8YUGbO9Q734MW1r2wd1sjvU6tVHxxMcBva4c5L+RhFYmhsgIosuLjJUHms7ncJ0fXmJ25/a20HNQ09E2+z0EuLGlGdker9pTxg1Izg7tzfodpCxuZKe/69OBw5RvO9rnc4Lqnxym0y0rPxWZGdxL+dyKvmP62g2+vq/Xpn/Nf7zf42t//2vr/3wv6wT8SNBY8iRF0/rHQPJN+NzfTSxenDeF88i6s3E3gz606nredOBMe5NTcOa9s2pOzLdnu3YM7fvOe50YA1HNPD9N4i90UebN+qdyYdDRPzcuU4mHmL8zzX2Jlv9ZKJApWE2kw1O3x64pjkcTId479L1sWG6ljGyDMeYOgPHGRl9fYo/6QUrF3uTHl5AzCxEz1s5c/ynFDRX2Ev72tC+NlD3LYVx7WsDGz1a0ECfyGtDRtRsGOZgaA36+2TNp+ev7s8+OA9nH34gL8I+aXPmwtiO0FByr7Q5XbSdiEjRGQVXVG15c+b8bF4oaqd25k63gk2i7VE+wx7l8Gm3Mnnzr5ozYx4PnyFspkf/06f/GcjXROt4qH1B74s39j3el/EK+8cv0QuRdLlCHA3f/R2sgWYgKmugORxlDTQH3JQGmsOvrIHmgOpqoDm8WA2nEjnDQdfTQHNoihpoDlZFA81hVtVAczh4jCpooMtQa2ugy0DraaDLEOtroDnUzTtqrTgZDrW+BppD3KqcaNKoYowMB6qmgeZQ1TTQe1BraKA5xLxQGXdXFQ00B0s3aR46EYwcMpvC4e6KTpKssfgXFfCGNNB83VViYnhUdQ00h11HA81hNaOB5tDraaA5NAUNNAepqIHmYBvSQHPwT6GB5valooHmMBU10BxsqQbaTLEXSH/RjSL2IrWNOYQQp0ADnd2kt08DzdR1nwa6vNgeDXR54VINNFOUJr/rRL3EOpskru7AqJdi9XPsj30y+TNktw2Jnz9t7fM/9yiSf4O4F6s/GrrmbGr2e/p4ZhpIdunp9tTpjcajgeNieQuv33ecKS7DPDuSJr7iucw27kXOY2Y4wdrzmAUoKoKqHFGpMI+ZQWpOUJWFVRVUZdCqCqoyhasLqjLFm2FGcjWqLqhq416Sdc3a2Ki7th85eOWyth/JrlRWzofkHjKp2KdPJ3i/jXs5ZAHRpqgO5oroVqY6OKC6VAeH1wDVwUHXozo4NEWqg4NVoTo4zKpUB4ejRnWUodamOspA61EdZYj1qQ4OVY3q4FDrUx0cohLVwYGqUR0cqhrVsQe1BtXBIeb5iIpUBwerSnVwuI1QHRx4Q1QHB9/GvYg0fanvr5mCz7VtPaqDQ1OgOjhIRaqDg22I6uDgn4Lq4PalQnVwmIpUBwdbSnW0cS8JvdLGvfDx9m3cSxv3QouhIKcF7vgm4l4kjHh0qWaBxAOhpGrJoKtB2JIglsZyUtK2pZ1QGdVjkdau3eFo83EvKXPaU8S9HOyNUo572bFsioUrdhyarY+71Me9ya05wMf93NYoj+rrd7n1YWoYVGEQ/j8Zk+rRC2kSf961XzAu8efTFSJ2RGdSwSe+OcDnYUS2+BdkF3/ejf9Qd43LWjG28XjnV+aLAtf48y6+F5lBOd94XGo9p1/nvtzmAAt5coTCSL45xBitK4EYuAO85Qm6dJhXg99amqqazpO9Cus5s9OubCm0ZpkdPWnuIGnWmqb059uWPMyYnhToyj2jmoX+9O3l8Bs71OUFA/1FOjqq7W2bSM14tzigm5UdIdMJVu8A3y2ox1Pv6PhsjEVB5/ZukQ/DWLzD/x3Qi4nei7bd2fqATkp2ToWl6/dBou+RmGUdDG1Rs0/BoR6WcYFdFHYe7xa/caeB7uJJI9XGIhyCEtXgvu0bvaGeX1ro45v5n4zpNx+///nHvxg//3imnz78ZJydv9LPHk5oeaFaLLNMVJM7VwhUA0ATeWoE03Scmjy2JE0Nf8kMSFoFkDJ90HCUkZdaEi/yozn9Spd6uF5S4I7oq1wsJxl58cJxF1jCVyjbtdncviyQ+i3u7DkiFsK+YcbnFed00Kec3aKV3egs4my+/K72ym4xvEJ4WrbK5ZdTdttKGQipovWT03ZBVPQ5aTSl3LQ0UHMqvwyqqsgvDVZV45cuW13ily7djMIvW5/qAr84MQ3hTkEoYpBg8QXtNPMvERImMqjkTa8lBL+MUPz2bahhRWVNdAAujMIhtgsdrEeOQlgo09smHF158yXN72ItN/EW6S1iy3PXJo0QEtK8Fa7cjt0R7eljPfP77o29sJHhdNlBwFKHYmGxDLLvdERdEPrUCWadpEJJKBSNO76JMx2/fY3gp7uk70JVtffFfdd70XlpiJGiJKdtjpi3cJeBj8WoNwlfX20im1ycuTk6zlX6qG4trNGM6nd/J1OYqFYHF/FcP9oeBmLYvn2r2a4bZjpfkR4naksJaojSukeYpQhyw/di35vzJxfR1dBjEzKi3BLw1xQ/t/h9BGCUvEITAWvloeWdYIWzjTZwIBDxogjRWXFqGgK2Iu9yJaJ6NXyP7DWxSzr91MgzhKnhTCEBbHGP6yDECbWxzLEIaMOWlFUXrOcuXViIqMOekPrruf8Lj4TdvCrd6JjGuWlM4PgwucV+m8mr8sy+PjDd6XQ2Hhie4SK3W58NBy7iqgyo2qfGeGiY/YFHox4c1OXCkwujUrQYPThvLj/Mr+PnWt+0sExu8WPth/vTh9e9s7v6C5ZKdIWn2qau5Q+0zWaVnmWyVP3HWKa8yhMsBlJ6eMUYzT23EkDVR1aMU/VpFRer/qCKCzbzjNrU4vDHEy2dQGHh8Z1Hyx4/YpTa3nuZhT0z9w5G2uiONo+wcgevdJxkyrf3XrebW+Ig00r/WfceXGcr719rPO49F+npt753RxdY+jZMax3iB2Fr5WqtXGIc/AsuiFjQKKSHe1aCK2i1TGmgtSt3X97Yt/5qHZo9NPHhj1JhXPglcz9LFf3kH/hSaqhwX+PzRhqWrL7hruwZFpWIrQ+x8LP8wSJfgjgZlOTAMQP1lOmpCfznGZ6aq30itFZp9Y1Y28DbznRqOy7WMPB6uun0rbFp9EdT3dCnzky39IFl4x/cbvns1NQ8w2SGrO6ufJ+O38I7eCWX67Ykearl28iQ1QrVyduIU9WJHz3t3KLsRNMTQrVNxLsgKqPDNJrS61kaqLl3tAyq6otaGqzqiDFdtvorW7p0M+9t2fpUfeJQT7AMSDVFlI5p9XuGOTaQVpCe/H9192b+33Pnm/GD/ePbW2dxjdmSH/TT89f90/OTQ2JVs9dWyjm4N1U1VbLtQjKvlek2bbuQ8ifvbqerPHBtu5B4yIkJoPIZS/bmz9qG/41iVNkjPjhFtRihcogqA6OcocrgNuUrZuAr24oZnLquYgauAVMxg1zPU8yAKVqKGVQVRzEDWdVQzMCo+YlLQGvbiUsw67mJSwDrm4kZUDUvMQNa30rMACo5iRlMNSMxA6rmIy4HrWEjZgAVXcQMqqqJmIHdNW3UiEtlsBuyEDPoag5iFlQ9K5WBrhOVykA1k5TKgNdzDzNgCuZhBlHRO8ygNmQdZtCfwjnM7ErFOMxAKvqGGdRS2zASUqVexsD6bvrELFzfLbfNuDAhFUvAGf1zU8cacRNdbEKhDusVVpOnT5NurNgS+q3iqu4LSC0ttScftbRsaTxqcUma3q6TjkqTV9thAPK91wuwI/jyzo4caLHC1FfJ+COhUigGVd7nGz6lTUb98PPf+w8/00QfaT3m8+COsh6uMdecrCzih1jYHCtNQjK2abcoWPoOUdGgrG790J9Cfxbd41JdrqdYORRnV7wMizND+uZNu6fOlPgxXhc21jMDIF4TjnyLU6xqSnOXoqvAT2lGC2vHQQO2XTlO/CEpDdseD4e27WApOts1Pc+zZjNdN+3ewLOhNhsMHXM8Gjo2CuQpjZZOD9HRFCowMnRi7RnJAhQVViPHcbbJqNHysBNYndrINHUz3EYGsjqdniU3rKGhD428WyVPbTycPby6w3/kVNm3WhxDoKPkXl6j7UcOuwzbfqSV5UThY1fcUM49KZZy/cAhzI9yP1LOcPD9QJuM2kstnVeZv2AatqtMYHDATTEYHH5lCoMDqsthcHgNkBgcdD0Wg0NTpDE4WBUeg8OsSmRwOGpMRhlqbSqjDLQel1GGWJ/M4FDV2AwOtT6dwSEq8RkcqBqhwaGqMRp7UGtQGhyiIqfBwaqSGhxuI6wGB94QrcHBq/EaPKo6scFh12E2OKxmqA0OvR63waEpkBscpCK7wcE2RG9w8E/Bb3D7UiE4OExFhoODLaU42mTUNhnVA1sD8mTZJqOC8iA6DkEKmKuQHzqYL6dJwfvoKiAWQn6wBtuPw+3H0fbjWMx2hFH8TwxD33ScuQ/nzNE+ckXE0WbolVGGXzFgqC+kWMCWEMFygdAAImkej0JvPmsmXJOCbmLRaAGgbLHSJEN6snRjFPHgKoDJMRTlhqd4GBRDJiOu5lCfPhU140dC40ovqFjcmC4TnD8KjARDdhUVEgDl7fNrhaKmLWc4iOQlTbX61Z1Vypmob5tPakHoJx7uyPxcBHJS/N1RPgX0yUNcjl4k189T74riRzeJoeWhMc+dwPVeFCfHPMethx/35sfkkz53E1YPy5PZNtBB28uj3ASCVt6riKQ5eJ+0dXqPcVzn8sU55b80nWazOXufUJwN1QkP03Se5hPcqb/WPSJzGb9h05SKb4m99wLFJyaHcNBVfPDm4nIVcZJPcL29W3xCFxousqdNYRzQ2FCkMBp9pBoNRlbOsleQwvjKOP1waZ19uHxA2VqMVpzCKHauksI4GDeSwgiYxlMYxbFtUhgH40NTGMUIaqKdkD6K8rpkbJYmzPkaDaDw9BZJHZT/klcVuVMb2ih5QntDwzJzKoXvBv/z49nc+fCddXp+en/6Xf2YKomuEFOVVLX8+km2qhRSJQrVz6hKF1eRDEkcJQu0hGjO/BzjqdqeJUxVw7MsVV0PJMs1IwRK6lDd3hxHJ74Xz3kRW3gsb80Luinfa1iWQHuf+uZitgpupBjxvUjOi+xrZOItKJwvEDSEPUdOId3WKLy6XNML1ia6r9PpZCIC0zd+NiwQXcRXcrdfFXUSxxoGvcjuw4PSniMp0EVqH+Ym8V2mM9G++N3YHH5JHc5XtNVXIh1QdjrytUcmQc48aF9xU2R7IrGTEOGEd0H2BxEb6C8w64eIRRyfaCUoaWVAoIyT1EJvaSNw0JvfH2uvtQ/rkAIO0bPFCYXQrSBiMNLei7fH429/+Nvfvr/49u2r/3n96u8Xf3118vLV2+/fy5BCOkjXRcHpvUbHs01C3Ak1pBzDiRZCGJzKQAyvkqqtly7lFlJ7+AtnvnYpedHbnC+q8A3CcVdyv3cyGzHEQeIQot+HOOGR5sw9GxsEiM1MwhfdQBZYrihRUh5wtPLljlB17b3MZvz699DH/h5Hhf4fn5DBGGjv0SQXSV7jF1++R8UAFlCz09PgmTZdR2i/Sw+trL3v6ZZ2Sk15Zd/isqPsTW3lX15RnmOgpS7i95q3WiE7Mg7FpN2JvQXY2sc1ijio/AVPgtsv0gk9eJmkOlxeWcv7d0dfHmt/v/KdK1TGDSh+coYrgDIoob0Jce0804IZXQSr0DvWJl9iY5uajNr3zr6nIMo7e4WUUbpu/4iHWS440hh3oGDXR+fGYAIt/BMHR1pjzzHGhjUwrenIno57dn841s3ZuO+MHH028vqGNRp5NNm2DY5c4ErNxtlhfq04YCvzw2+d1DMYP2lSTwz/mSb1ZGufzAWVq8bKp8M280mW4RpjZzbquR4SdR3HcMez6cjs2wNcWv3BsD/s2Y4znNFwG51zWqn+bTC/Bz0aeujO5MMtfgaJvls8m3AHiwEjSsu5u/3bSXl7hWrlB6KpasXD0ZExGtAoOJMHcv/menz/s/mXtf3j8sr9Zn47/XD58c3Ln8w3CkNTuSeFoWm28uUD1Oy2lYapqaL1B6u7ICpD1jSa0sA1DdTc8DWDqjqITYNVHcqmy1Yf0KZLNzOszdaHGdy+WV3aC/9BRDvjpsQg1rsQA4NtAAcdC/UuIsNH71uW1TPyEwJ5ofv96csfHk4fTpHjc3pIhk/2GquS4ZMq2XYqjHkm3bq1Ne+7IG2nclioZdup7HYqBz9AUwpv3N//tqk+bAd4cKpPMUJlVTwDoyyKZ3Cb0sQz8JUl8QxOXUU8A9eAIJ5BrqeHZ8AU5fAMqooanoGsKoZnYNS08CWgtaXwJZj1lPAlgPWF8Azo5lX2Ea+OZK7aSNgPeUFmQOvL4BlAehO5tB9kdn5ava5QSTURPFdR+XIzlTVNZwwq1DQNgzNUIeCZqaWiAp5BVRXAM7CN6N8Z7Ibk7wy6mvqdBVUXvzPQdbTvDFQz0ncGvJ7ynQFTEL4ziIq6dwa1Idk7g/4UqndmVyqidwZSUfPOoJZL3onJ6Fj6uT6c9HsTa0RxPDH5dGFDcHlk6kR4pLbp9XZTfTKcyGBimntSfYqrui/Vp7TUnlSf0rKlqT7FJdFMdVJ9hoYUYsTDgENTfY6+TSTXbbJPdgrfGZx/M//3S/aZjbFEgjuYzcZef9o3DW/gYD7UNMfe1Bn37fHIssZDd0rrxeWpj7T1JZ6mbBfKkcHZGVdQ7dnJAhSV6cmcValN9ikU9hecwOrER6apm2E+MpBtss/pSX1Jn+ylFHjTXM9XPu+b27gSc1rQA9RYD68Ape1H6i3fVZU/zd21EBjhSSk7hPIJjoJu6BPpRw6/2stoDu1XXb3AOh784RgtT8TDJnBRBoHW8XfFSHtWfyvXxMgwx2dHREKUXwrlOMokRm5YkPDUEEjN8eoZQLAYrJAnlf6T5j0FC6FS8co0BlfRujwGh9cAkcFB12MyODRFKoODVeEyOMyqZAaHo8ZmlKHWpjPKQOvxGWWI9QkNDlWN0eBQ61MaHKISp8GBqpEaHGqb7JPIax+7MU2WsBIqT4xGmA3unDVEbXDwatwGj6pObnDYddgNDqsZeoNDr8dvcGgKBAcHqchwcLANURwc/FNwHNy+VEgODlOR5eBgy2kOs6NbHcM6N8aT/mjStwpoDtPoGHrHMs51fQJrhy44jOU6vMKS5DETktmkD6Q9NAdT1308R3mxPURHeeFSpoMpWo/qsAY9JLJsRwcJ1SGTWvJrGMhvt8sYFBMe0Wqd5POsgg+eAw/qZPvdtr9JfXnnX/vZNRDaZJ822afLXOrCFx52xzBPN5DsI1EaTfaRkE0n+6StRTuhOyI1ST11B21aEh/UzD52R6I4mlgl1MwekqPw0fU8RbLPwZYn5WQfmTaTMmKmvMNJ2gy5ZeV2xcbiZLuUvfj5dPUiZTCOM23IC7YBTbzGcbDKFRV4Hoe3lPqMn3s3L2RFnnfxUclujIgaZ46ZGlhHxQ3aoYAw7UPY2f6FXCKYcO2O8Kd2Iu9jhI3/At+utMvOAxv+XD+ae8mGvosNeoZh6L2eMUq+hdH2BqAwvSQY51SIHNHx6grJlpj5BEAy83lAgFj8cgSncQJxFdx6Kwf21U50v/SAljbg7W4k91jaG3aB3t3A7mY1HVBNqgPBIOGHXNEU3SOc3nQ+yewtz+YnZ/iW126J6zu5oiMYiIXBPfF+txcXXYG/2cV1vI1sash3X9CNPZkFX+4r7cPfXGcpN77cKmvJT7YrM+bLcge78xPIT9qjz6Vh7aRkyPgHdDkwCYmOcZuRkYnI2AZkyASKbTxGEvpU+pySzyilx9MmDYP6x08vC6OkU+SSMBavG7oX4ySip0rASN94mfyL7L1Wmn5x8O31yWdfPG34l2UmArXBqGeODROZrhl//m7414efemcvX/dPz1/f0bxEdDPPTV0fPB4RO1cJ/7LMRsK/ANN4+Jc4tk34l2UeGv514trLCAZtRLZQIo4292/8SLuxF5g0EQGsu3LD2dxbIkAmPpF9czzUR9mzmIR+/XD/5ty5e6OgEJLoCgqhbWXLr5ztdpV0QXGx+mkKWQAVNVCCpJSikIA0l6CwQVRNT0iAqip/knLVxYNJyWb0Ptt6MGkJP4TeCjdVUUpCHAWGXwuiiXoimmiIBXqRoFA8zY34ItM8142Jbk0MsY4v5pSRdyWmuWV2kIzGyn8hcpixVm8czzL2vP5shq7b06eQKrtDjzTJdh8aZRtBRbquTy3PIo3y5x9NZJlPGk0Uw3+m0UTZ2ifKBRVOeaN+cPqmZU+nvd6YVPD6zBv0TGRiGTN91psir2hoztx+f0QR9PloovgWm9ibh1qHHmqY6cE1jO1lGBH3q7zGK+w+r8OPd98+GFdhN+ntamvuswDtg5Ff/PY/+cGYjg8yRjqca+YIJGTmlSIfH4S4r5O70/Pr+zcvvzskPihpX/meYR0vKe927zK5bWeAoUNXqqfbzoBfvyLbQmnHPCnU05mXe0S+WaD/xFHyQW94ZVr4X1UKbx4Pn2nWcY/+p0//M3gmZiut46H2BX24se+nHv4c/fFLXAlSMS+1DwcI5gs7rYPjfnZLV476KYBQVsgXYDYlji+ArqyLL8CoK4kvgGpADV+AWk8IXwCkqIEvQFSRvxfAVVW+F0Coid4ZwNp6dwavntSdAauvci8AVBO4FwDW17YXgCnJ2gvw1BTtBYBqYnYesMYKtQVgsehmozPHvRJPHu0Zt0hXVQGiaixPAeSuXAgrV5AYJFlv7JAZjALcuG8ugk/05jWR1eTqBVVFHUFke93HqR16vxwfHz/SLAoZyaTOvGY964jUC2rXjD69ALieNL0ASJ7qx67kWqjdBDVas9lE2TTYVkpeE7EhLXrBkT+FDL1gNyoK9AI4RfF5AWK57hzROZiQH56bOkJxJta4YEKesnNS2/T6u7pzbAJpuiFgDGuiG3t057vV3Cc5Z0vsUZuz5UqF5rulaPoWa2HQsqupl+NkjoVEEJCHuYETHvsBtg39B2zXN4dWG6dDVmW0mVhTBU2zwMIg+PNN/Ge4dD9eUJz20dmbk++/f/X2/PWbM2wmXhol15OeHvs3jdMZmL1RfzCYjqfj/hSzgq7Xs2eDmecORgPbsPTRGJOFvZFBDUO8GxTP8wDLj6DZ0kpx/CySyXv6yMpJFRKS+7V++vLyoY3BwOphmKUvf2rJOaqMFF8SBCrz+zllfxun08bplBMAD2cPr+7w38dt55mZ25+RUDDuVRnbCA37Vv4tyMWN1Si4W7T9CEJxavYAbZwOHs/cItcF/aYyU5C5sqvSBZnC1ZU1meLNyGtyNaqusSlnD/h+ILtqQBung2QfYq7aOJ0guN7TGZYHCtXlDphLtdsAgcBB12MRODRFKoGDVeETOMyqpAKHo8YslKHWphfKQOtxDGWI9YkGDlWNbeBQ61MOHKIS78CBqpEPHKoaA7EHtQYNwSEqchEcrCohweEW0QaVWQkOvCFqgoNX4yd4VHWSgsOuw1RwWM3QFRx6Pc6CQ1MgLjhIRfaCg22IwuDgn4LH4PalQmZwmIqMBgdbTmu0cTro/YmHuF3kJjjk1NExqR2ZpkWxGlRHG6dzNPcdDwsN0+T8p0Z5HMnTjlMrP3TspU+TgsmqDfKDRS6F+ONw+5HW7o6/HePjKlkqOYxiGPqm48x9MuBhve5brGI+9ed+RLTPcj1Fu6CYDK7FCh5D6ESx3P2F7OGPJiMwFUnc0tFEBi253sxez6ML+RIEmBsbZAdlilxQDoaIfAm9+ayh0BTYERuI05Eo4rBU6xUPg8YSMhlxNYdaknTTVJxO2nOzk9mjeiTiUb45iK0iofE4nZSt6inidA6276jF6eD2I0/eBWXE4GbCn0/rmzap9xBMZN8aDMxR3nH7qsA3/cPD2YefYHI46aFsrdlNEY5FOS4AUPFNm8NGfNOAadw3LY5t45s20ZXSvAHx6dSl4rd54FzD7DyZ2fMQUXQi/ge/nriuFq6Xy2AVaeiItZcUeKR9+1aT0w4UFoBOfBng8UWzoXmOObi5/DC/js8pDG8mdeJpWn5roT59eN07u6u/yIJEV7BQb+pafg1tNqtkoJal6vunM+VVWOQYSMk9HWPQjM7Kcx+7ghL85bFL87ykFMtwNofwZAmgqnc6xqnK8sTFqvM7ccFmmJ1NLQ7ndMgmgadLbJs+v5JRTeHmlhQxX5n7l7Ko3ougkffJLRzMNFujHvDd6t1i5f1rjUHZsSbA7mzCwuA0mt/Tr/8QQVD//CKX5DWFpKQrl1MzO0av4y+iVeCuHVynHbGvDsF3Yuyw+yVhISaLKrOc2xE6lhvhCTn59vWxdqJ9i63fyopojr3QYA+5sVfonjTUx97U/+7Kd64I6s6fzxE5Jk6DRvMe2LHAc725fa9FK//y0luJL9dRcIMYCEccMI5NHC3+vfW9u5CwKDhHe//nNy9fvfn72au3378/pm/pv+9T3aBcD4cQRbgXtTKaK4yoIugSqS4A1MJAW+AfUp6C99Wu7FsvPnQcEsa5kYf7BxCrYH15FawjgeYErkei1c2O33phML/1womG8BwaaReY49HuA8qAhTneEjq73FJ3CHhtyBzvGIY1NnW975i2440NGOH7jmvAj9i3nZ7es53hbIy1vFCHX90cL21D8bRoecdTzknJYSIFxMVgOBp5ThMFtRLllYX/TL3xcePEtU9oCJVW31AZ05HVs01vZAwH3tixXBtJDMO+NfR023C9sWcPnbFnWvR+mffGy150IrqdsCPvF+mHz3wlTfAV9tOObLpdvPuT3PZqPRXTQFKtET+2ahvgM+XbkU15K/+njWzSvnfY3jHGz8tTX+Vt773TlyfG6YfTRKoaC9xY5Vt8/WV+36t5k4Xa95pue/dHJTLUuHWUNWwxzn/a3X/Ii3iZz12uLYyBNmaDV/di/gKvJt5qZtOriXaHR5kYcX/jR39dT+nt49bCPV3Rgl7UgRzsQN8pXNmAvoug7D/fhWzKfr6LXNl9vgtRV0C2i9SAdGwXtJ5obBdHUS62C6giFNtFqyoR20XAI7iLqYQpjILxIk745oJwD3mpKMarLQsrhqsnCCvGqi8F28VTE4Ht4tWXf+1iKQm/duHUJF+7eGpiLxavhsxrF0tR4LULSLdYHjQhCevdZEnptLm3sqhrt6INybl2gdWEXEV46hKuXdQ64q1dlGZkW7u49QRbuzgKUq1dMDGnVt9ivgvYkDxrF/gphFm7e1GRZO2iKYqxdgHLZVjDjm50zD7ZwinNtSju1chtU+wuJwP6WCx8htTYfe7ynVruM5dzBfZ4y7lipaKrnUI0+ck6y5f3x7y3vHj9spSaJlnSDF/tW7ks5ouv7PBi+RRLl6EKNz6tUyMfT9LYba+cK0R5b+lq1w/tKZav2boUt0Kh9MF8ukKrffIntENG/JTRPuGPHeGTi/eOebAU2ieik4T12556ZL9LC/gmQiGVhMbGf8jpcQSeW3170O/p5nTmjfvO1Jpa9mjYN5FYOzAsBz/Nev0p0U2tufyuNYWiBbLi0OYkAhnNqfKEWgat6rRapnB10UCmeDPSgVyNDhcQiN5biOyWAXUQJL2yhoY+NIw96bKtuZxhatLngh7RBy/kIWYe54iXaPuRth8pjT4tsMl/Iv3I4Vd72bx9ay5vzeX2DelJxdT+IRNTjCUF6zsCgHhakX4o7xIVvAYYAq6q9XgCDk2RLeBgVTgDDrMqc8DhqPEHZai1WYQy0HpcQhlifUaBQ1XjFTjU+uwCh6jEMXCgakwDh6rGN+xBrcE6cIh5moC4uAaUlaoMRFl1SYqoxENw4A2xERy8GifBo6ozExx2HX6Cw2qGpeDQ63EVHJoCY8FBKvIWHGxD7AUH/xQcBrcvFSaDw1TkMzjYclajNZej98dgvJTnYJq2lO1guY7WXN6ayz9bczk8mw2YyyWKeHCpmqfjYRAZZWO/tDB/YN74SlosEl9YzihQ7rXZov4K5vK0aUXMe5NPK/H0qB6JtPXsKmLixvLV22rXlwTs5CVNtfrV7TesufzPb/72t5M/vXl7cv7mLXpust1diDFjEs0tXOU0Wwg28vnyxaHWxedkjnshnDzPcbXg846L8fl09aLMxyh/f25rdM1+/W4TRYpHExlbqnoZ3x3BPTgHziKQs/fvjl4Il+Tzrv1C7qu+07HgcIXpUeI2ZXuUaML4KHe4dT/GjXz8vLtEo+JENWOC3LTLITbIzb6fh0uYQZ05prbQ3qLb6EDrfBes4KEMgnnkL5dkp9x87IQeTo+98u2OGEOilLjQMt5PsUJwCPsm4ITB8hhnMLFcPu/SPl9MNFwv2R1Tmoj2IezIatBf2BUZQTseqRU6lJiA/f3F9iFLQJ20eWDjX7LVJxv6LjboGXqvNxyMR8m3S291A1A/WCQY51SI/KWxLSXZEhzB7vVLxixmCJUkY+IYE4ir4NZbOfbK7UT3Sy9p1d1f5a4OAMaEa4wIkOI77NAavqCTIe4iXHzoRNJBFIf2F6Kn2OkiyrqHdwtx96r4k+VOpTu5OW+ydCZvb83jxhzJZMU+5EZ8t9hxIj9tGohBZme5LoHRMwajfn7J04I0kO8+nr18Zb55+YNObwwHk68pOipOAxE7V0kDMQaNpIEApvE0EHFsmzQQY1AhDYSMMyFkZ5r30b5ZztFzkq3mZLmEM99xvLAoBcRzXYyyvCkJheh09s2BaeRP5jYJ5OzD649n52LNWhvR83Ys/dqGhosvw9iKSmRoPIEmXandGF4hCiRd4fJrKL1lJfZ+U7B+JkgeQsU8u8VSSgbZwjSn/ElhquaDbKGqan62JasLfrZlm2Hp03WpLvWJw0JOkFSxuYUxolrjlkZUCK4hjDXonhIBGhAOIisDw/erOBEED8cwKadRcgh+wkug7yBUg/I1Qm2K9Xo0e7kU5elff4FrYY6YDwxp5NKv3sdlSIvQxD0GjY6i4NpbiK5ktl7RCj/aF5hi1O49PL1l7obnfgk4H4Eg0Hkfo2/Ip2CMOobZMSH2NSaWFYt9nywFYzx2+pA+uq5uD8aGPjUcB2FV/Sn+sV3H9Czd7Nv9KUVS/eopGLEktwGyJn7dNAZPGoMRw3+mMRjZ2ifv0Coag817OPJVpgMLKzv1Z6aj67at98fDKVIwBqPpQO/PxgZWesLaTzTSQcRMWuG76SMmYvDQoQWg5BzN9m8p8q2wk7zId7OT9rm+icPYds61EzHyEO1zfd+KMe1zPSvhNQZWr98zjdEeEe/Hsw+nOoba96fnlzTc3peVsW1nOVtmHS/vUWxvXEbbUezm5uTv8hoLQ+Uh2o6i7ShoHg+t8AP5cWg50ci7sN0bWvAx0fof+EJbJtD9q/9Me/17ZPbtZmvQjFCSrfHNa8rV+H2ovX31/TnFa1A2HiZSgwWS+ij0WbwjgBYIFsEN3jPu7Ptj7bWGCd1rLVhocXyHeTx8plnHPfqfvnyBsI5pAqNiTgfTeR0c1VFUvnJaRyGIcmBHIWpTmR2F4JVjOwpR6qpzC8FiHjF5x94uXH246rcQt54utxBKUZRbiKmiyC0ErCrHLQRR0+KykLWFuCxiPRUuC1dfglsIqaa/LYSsL74thFNS3hYiqsluCyHVNLdlkDUEt4VwimrbQkxVqW0h6K66ITFXxL8cMvNRiBz330U7SASytbHVFLaF1UU9l/bK6z6SufqX4+PjR5qDofhrKY6tXdc62trCGjYjrC2ErqeqLYSSpz0t2xazjrWbT1FPW1jHhsS0hdhPoaQt3JGKjLYQUFFDW4hZLqCVU/yjc9OcmNZEHxcEXRvZbYwebbNch1eee2HTGhYyp9xATvm5MRCxICZtQvYGabrEp0k3fvsRjGJRRfclg5SU2RMOUlKyVDdbVA7HxUeEsKJZsz+yBCO8urQfyIzsBGss0DNpA0KO3hA1Re/VS/fjBVHZR2dvTr7//tXb89dvzvC9uIJkRkl6lQtncP7N/MPPf+8//Hx+8jWJJ0FiBXcX9O6Jt+WjiQwu90MstAJSPb3cehQsfQcay3/8c8/6SJUDQm7sEFmYKvkgfdcD5e8NPAcshdHrDcxZXx9a49Fsqo88GxEhI8Po220+SCVlQEa9VZtEKEBRmR7MScpCMlqRUgA3gVjxQy4FUv7QLrCtN6cSyFSwzQfJZrRnGkeuXYHH4WZiY/+cYZsPEsXiIrOHUCRdQVuUPhf0fD5YooaN236ExmNtP7Ln7aiggZpRHin3I4df7WX0Q5sP0uaDtPkg3p5eoNx1pUhFcBYDFTaCw6xKSHA4apxEGWptWqIMtB4zUYZYn5zgUNX4CQ61PkXBISqxFByoGlHBoapxFXtQa9AVHKIiY8HBqpIWHG4RrSCmnhPzZ/m7a3ln2hB1wdcdq5bAadt9/APUm1f0wh2zDyqVboLA4Gpch8PgsJqhMTj0ekwGh6ZAZnCQinwGB9sQpcHBPwWrwe1LhdjgMBW5DQ62nN5o80HQ+9Ns4u0i17FJuamYgmGath7V0eaDtPkgn20+CFycDeSDSBTx4FINkIiHQbClPEU+SNposxPdoZxCkrU6CS/Szk5U2+dXywdJGbaeIh/kYMsQmw9y9ubsFXrsvbkgn7lLsSC54DM/IjppUHjfehfzwLm+wBojYQBtOVHevzx7lPz31qidXS+4/B0qvgH1PnYhPP+WMdCNwSDvYSnw/J/Cx3KC/34iu2WtKebY8y92ruL51/uNeP4B07jnXxzbxvOv9w/1/L9eOPO1C78/XL4rT4u8UMr23cCBZ3gRCV+v5uI3JwpWZAfK2wSjwHVXN55pDGnBbjq3PQgDhmPEDqRFEkkAwHcf37x8Zb05/6l2AEAMr0DSZatcfkllt61E0aWK1o8B2AVRIfrTaEpRAGmg5mj+DKpqHEAarGogQLps9UiAdOlmqLlsfWrHApxjOVzvI4Qdws2/xJJOtnMFY06oiVAifLnwKOVDrKeLaKPwGfz52AIbvKeuIez67sUqtI+X6+l73O0FJn1I7wbnpLuDgk9I757MpG9M+1O3PxpDhWSM4Za2Rjq0Sn14p3XbcsyxZZt9dzYm//Tnb9LX+09q0o/hP1OTfrb2CWuhMnu6YT4cY9jTKQnCMYyeObRs3bXxBtTXx4NZzxvMdHtqD6djk4YmOZN+6p7da9OvsJv2+XvoEjrpTrO20m4XpH3+LvZw01Kh0j5/t67ctMLO6A9H43Ffhwo7PUB+dfdm/t9z55vxg/3j21tncY2ULKf35vzaOH15eoh9P93eckb1UAN/qmQ7hEdK6FaGtnv31zDy74K0XUjbhdAKp1VEuge/ppZp6z5Laz/bsR1s7i9GqGzvZ2CUDf4MblMWfwa+ssmfwalr82fgYppBxejPINez+jNgigo7BlVFYMdAVtXXMTBq8roS0NrquhLMeuK6EsD62joGVE1ax4DWV9YxgErCOgZTTVfHgKrJ6spBa6jqGEBFUR2DqqqpY2AbkdQx2A0p6hh0tTgAFlQ9EICBriOnY6CaUdMx4PXEdAyYgpaOQVSU0jGoDSnpGPSnENIxu1LR0TGQijI6BrVcRYcAgA3FYEx0EQCQoxgoJCC9jQgSyIUEpDdB3MBgT0hAcVX3xQSUltoTFFBatlRCV1ySJqgR7L60aZWW3LIoFh8W0BshlX87DGjDAjYxmm1YgI3cQVwcVzYuqOkAU5rGaGS55sDTrZlnj+1Zf+w6fbPvGTPXcS1EZ+szulspvBCrSs0pJBxF05LPePpR2nCLBQSv9dOXlw+nJ1/XFhC0Jt87lQnInES3DQuIliEiZXKrohW4dKsLCTJN3YySIAPZhgW0/QiSatAblJPlBRezJFTbfoT0cQfRoZkbr6oeKXfXLgNaiOeQ5NOCM/eJ9CPlfAbvA3G90Fn5clJmctSGBbRhAW1YQBsWsDP+Kpejq7EZTOdExGu3Np1RBlqPzyhDrE9ocKhqjAaHWp/S4BCVOA0OVI3U4FDVWI09qDVoDQ5RkdfgYFWJDQ63EWaDA2+I2uDg1bgNHlWd3OCw67AbHFYz9AaHXo/f4NAUCA4OUpHh4GAbojg4+KfgOLh9qZAcHKYiy8HBltMcbVhAGxYAxsYOL4ixgf85XvZRSt7iyGZrNEQevU8rksv5G5lNbK+cK1IXbgq5fmhPsVD55otg6S0uZAeVMDojJAzPfcdbhMIoDk0bpuax2KcIRI5XDvsNKQ9K8EbqKeoiP3Qw3Uqs3n10BYdq8sGihYPkd9Zw+5GMifG35AZawckU/xPD0DcdZ06LFh3tS2IWjZ5qwKMJNd0drcNI2uCJoQ9AmbnezF7Powsp6EJT3hBbQo7pC1pNXhjaQ28+a8Z0Pob9s4GwAIkirgvVesXDoLhiyYirOVThhir28TcVFpB2FX2+YQEp49hThAUcbFxSDgtQ8C4+dwLXe5E3MD7HNYSvC1z8CrvK7wT9zJM66kdj6ueEo960rLFumuh8MraSAkf964fTh+u70w+vdZStNQ8rHfVy5wqOegA04agnmKYd9fLYEkc9/jrUUf/3199qWEcb6+DdTP2F52pyYgQrXy8cWgubBvHayvvXmvy0aP88HX5jr65d17713WBGdDmdW8PCgsC9nGEocdS/ekA+gnEmTUL2rY2w9jybI74M41UqaYfxa2Sceh3DKzjq85Uuv6jyW1dy1WcK1/fVF8GosFlZPCVvfRaK5qtWnvvYDe4W3uqXxy7NbIpU/rRBPn/Gs9kckgXK4ar667NwVRmtbOnq1Hi2fDOcVr5OtX32ODsF1nidrPGmPun1J6ZeoFszjY4+7pgmrXGvW1i8hraBTCyMF7eRo3sxnyJXu0l9IXIusciNVOP0+uYYi3XMXNebWmN3bDn90cCcjlzddWf6YIjfrXFvaNPTCb7/y4WHAV/88hD/HS9KEndU2OHKu/U9st7K1Uq2P0gfiVjCRL5+yw02swoJsruyZ1hnpun169E1P6U1PoH/PK3xudonc/TlvUU5dbKZ54ePdez0PMMemqY3NI3ZzLZ6hjuaehb+c8e9kT1znDG9kuWt8ZkbbYKnZWe56iQPzI7cA4rJJe3Zn+W1XqEa7aO22hoT2f6wtoW+CKZ91PoPIlvpIO1I+6jdXeg6a6m3jJFumQdY6k+RP3XycPrhIEt9tt3lzNOhpvpM2XYcLxsvZa0v6hVqmOuLYNrOpe1cNq/QeF+qPo6v8P76b2e3L+n0DjbccxiVLfcskLLpnkVuynbP7qCy8Z5Fqmu9ZwEbMN+z2PXs9yycogGfxVWx4LOgVU34LJCacK0UtrZyrRS1nnStFLK+do2FVROvsbD11WsspJJ8jUVV06+xsGoCtn2wNRRsLKSihI3FVdWwscCNiNhY9IZUbCy+moytBFZdx8aC1xGysWDNKNlY+HpSNhZOQcvGYiqK2VjchtRsLP5TyNnYnano2VhQRUEbi1uuaIPjHgRInwiQfg8Z4QUECBn309sIV/6ucV8njsQYTPrjSc/aY9znKrvPur+n3B7z/p7SpfZ9rixNo9cx8OuSuV5d2g+YXmkN/J+Cmm2fxgyCsozCLCMwwx8F6rIwglKPRDZTWyr4RNeRs9dPhAotIVbiP2IaZWDOzN5w2hsMerY5MMyp6czccX/cGw8Hw9FUH4xnptP3UDpPo6QVrvFEZ2vgLzBe1iZQMhLi1nh7aS+qzG9mWq+qTCFTuLpKIVO8GZFCrkbV5zbTxIk1NPShYexJIn44e3h1h/8+4u6OpcAZLmQGSdNF/AMjd6cH+cqHDglCg1gBIPQsbRDIQQRgQQ9QgyspQFGhSnKnug0C+c8KAinnSPh+oDXw91KcUWVGhGnYrjIhwgE3xYdw+JXpEA6oLhvC4TVAhnDQ9bgQDk2RCuFgVZgQDrMqEcLhqPEgZai1aZAy0HosSBlifRKEQ1XjQDjU+hQIh6jEgHCgagQIh6rGf+xBrUF/cIiK7AcHq0p+cLiNcB8ceEPUBwevxnzwqOrEB4ddh/fgsJqhPTj0eqwHh6ZAenCQipwHB9sQ5cHBPwXjwe1LhfDgMBX5Dg62nO5oDfzo/THrU8p1ME1bj+qwBr3CrGJpyE4M2gkBIr9NRieYJ/82sZKT6V7e+0eTaLX2Yhv+KviANXDhftl+t+1vUl/e+df+Zo6rNfAHS98hy1Br4L+8galztQ7NzOu/XBib3KbqBv4YRVy8DVntY8iN2x6xBVfSlnMVFU53lZuH4sFVxpa0461vyMBfvhPV9pHnbXckiqOJR9PN7CFtb3sKA//B9ik1Az+69Gng3l9E3kd4AI/w5xPb4sl2ltjiR4Nx/4CF5skWf2m+Of9BcaH5kfC8KdniB83Y4gdPYIunY9va4rHKO80b0JoCxFjjt3ngXKeiZiI/mtOviS0+mWXQfBDWNtaUbz3xwhSTkX2gGVtPfGYhzqwqhqaAWk/8HktVM3RztuHreGmo35ddfokn3rIm1qhAEtacJ96zR73+2ByOdN0bjC3D7Vtuvz+djsc9iFvMQc+hRb7/XTzxg6f1xEv4z9UTn6l98kBqxBM/GFqjmWNYPU/XR71Br9+z7Wl/7OjwxFuDmWWOPH00m5KK6iBPvKxcJ3lWoljGE7/7sxRzVahGXsyVfw618TOInWttq238TNll8Kk8altPfJtttQqz7xJxRJaK0CsvSVdQerXj+PWKVNnM7FlRUNen0rmU673y1wiltcZRGVnB12e5BH3J0bWe+GdHQsJ1yACaa8duZREYi1RXBcYCNiADY7Hr6cBYOEUhGIurogRjQatKwVggNS1YKWxtMVgpaj01WClkfTkYC6umB2Nh6wvCWEglRRiLqiYJY2HVNGH7YGuIwlhIRVUYi6sqC2OBd9k4cEBEhop0TMxWKT2iGhKGldR+EdGMWvfxDwgzvqKIV1R7aa88pWrHGN1HMgb+cnx8/EgzT4QuhV1K4HW0YWwDNCMOY+HrqcNYOAV5GIupqA9jcRsSiLH4T6EQY3emIhFjQRU1YixuuUis9cQv7xMn/u0i1xOl6C2ueWkavfXEh5CoHbLEy6e9wkvriW8XtZ+3i1EftJJ8JvofnSBc7a0nPhFX1tEotJ74KF4LRCZ3KCwFktZ00/M5upnzD/bcxpVETxnxeJutcWCUeKbV2n4ky+pmGqdOP3L41V4WG9wuat8uat8uat8uat8uah8vWSbGJuXOEppUrk+CMEa0rhoHwqHWp0A4RCUGhANVI0A4VDX+Yw9qDfqDQ1RkPzhYVfKDw22E++DAG6I+OPjWE0/rNV9ASXJjR2KFvxnxMxvC4hCKhmvbeqwHh6ZAenCQipwHB9sQ5cHBPwXjwe1LhfDgMBX5Dg62nO5oPfGtJ75d1P4oaj3x5WP5xBM/aMQTL1Ca9cQLyGTEperz3njiU7akp/PEl+1E9Uh+PU/81t72FJ74g+1Tn5Unfjg0MagUfq6BZfZMczzeu1T8+U9YKvG7+9MP1/1Kc/npgEu6Krpy5wqeeAA04YknmKaXipfHlnji8dehnvgTLBNvr6MAo37f0eCG9zpzH6s4a1f2wp3DsYE2z/vzPqzDCC8K0ZWH+en4fI6tft9C9s0icL0LOsFHpy+T1eGvH87Of3g4O/n6a2xca3V4ia7ACOWrXD5Jnt+6EieUKVx/cfgiGBUDTRZPaXH4LFRzRvgcruri8Fm4qqnr2dLVY9ez5Zsx0OTrVD14PTbCnziOF4YUe/GNH/11PdVOvn2t3VqaH4ouQBNdgOcea+dX+MpBX3DpaVgEmz57zrUoac/n71bvFvEi7PKrpCPBb/ea60VIq9L8mYaeIoUr9uLZQMIOXi+0cO1cEZKtOZCHPpNbe/9aeyEKhxqur/ncc7X1IvLnOzCzlRcSEAHQf2831ddcO7LjfbnabBXcaKQ6RWa5Fsy0uQ10lF2Cs/SojuiXfLzlzj3UaUZIonuj8njP3m652Uy796Jnmeos5OQJFlSWexVH4LmEJfZOrfC+S+17Idr3veYt3GXgLyKqUOZEHGt/QSrJTUAV2MISUuh5WmLccnFVzRF5skpPUd9aqV10k2ZBM+P0+bTaM5277Al5lrsKVl60Xi1CzVutArTW3ZW30BxvFWHhDnGepusQc0Xa1LtCmlSwXtHhypOdv2QcO8JpxjnEKdaoXPo6IKzMHIaGR452Z/tRqKEpRSUj/8ZD6ctL0ZRoDO39Wy9a3XdOZshueZ+cUXH6v3Bmx9rexvmdqEZn+6QLv0waqdPpJB/FdU+jBpx5eSW6AY6DLgV/4czXLm6Hxb228O60CFXDJbXS3MBZk8JbrKlNl4eo1TmOIml6ewMXAiZaBe7awVFN73Gs2/vsC+/48pjOkr/419rHJXB3ZUcF9xAag24YVGp7eSZXOBTb2yua6vLlM22Kmw63Lu4m7dpf4F7GVRfQVa55H/0wwsNFHsvmXnqt3QXruatd+ZdXuJ/t5RLPe59uMDL54L5cOF73cu279IHOzcz/KFBwyM4a6SiLCMVmuK+y2CfzMHiWa66F56FGOOgp0NGKLtoFf2Eack6dCEGisQGXbrfkAtzU+C+eN8etjnsEZePLRpwoeZx39r04av9muQpuZVVz5/mZFqLhI7TsgqoixOXb3uX8zcs3k83lov1D+6f2F/9jrv3o9474jQZX8vKg65kultl64dDlYc/96H674cv40skNxWQ/nB6K7caX6EbHGJwbw4nVm+jmAfElYkUrLB4Veu6FjSCsBa7yWIi/84UwLfjRhYx0cNyZ6c7cgW30dd1ypm5/ODbHw9nMM2bIMjEG+tDTez2KrkpcYAn8xhWGGD6oLOObCjVYebe+d0cLSeR+kG488aWcfJQbbOZUE2R3Zc9wFPGCHjFjojJbLd8gMYR+yviSBP7zjC/J1T5hKFVafcNyTnWr5/bxbujgOhvPdFf3hs7QsLyxMx3N7OnAsnULESb0LojHuVi8JV5mKjM8msRPR2wn80q2f8urucKO2heggGSxtHbbAdbx7Ci1tiquCKZ9Aaqy6lT7AoShtu3eYL05+XwQU5rLgPoMMQeFhadMfaxbe9ae+nh6fmKdfjjpn748pSmMfetPZdtdekjiHIK9C1BlyrZzKxThkEo+KuoTaixCVQTTdi1t17KZ1IT8ofrcSoU5xTLlrQwBx9AfiQcrvD7hzQHvPN5qZjv0xnLnR1fidWg7YXBroaPAdtdJMHjpQ1ryXiV9FCHtedCXY1ReT4qrjPqCUixyUytKsTuonCbCItVNE2EBG0gTYbHrpYmwcIppIiyuSpoIC1o1TYQFIoHedB5Mw8cu3lVIh4VvLgi+fPy957Yk2NppIqWVrZcmUgpZX0jLwqopaVnY+lJaFlJJS8uiqolpWVg1Ne0+2BpyWhZSUU/L4tKNlcdOpBlKd2wjilq22g1Jall8NU1tCaz6QlMseJ00ERasmTQRFr6erpaFUxDWspiKyloWtyFpLYv/FNpadmcq4loWVFFdy+KWy2uHHQN8RI/4CMOamEYBH2GMxTbgLEbEWVhD2ma5JhZX8BFHpm6MOqA1zOG5MZiY5qQ3pk1oCCRfbPAJFnU5ryImB7jKJrke4dW25P/dlpvsKQeSZJEPPqqw17I0EW7PNKvNpokgqAQUnouXP1CN4bEfYOvQf8DSFn2jZxYvPPXsaGfVKSJUFpdr+5LWxChcciomU8TKUU+x5hRSQG58IpflaZEMlL1yyIKAebl49//heSIG3BfezF7Powv5toKzlXAYJPqjLK00+5HWw09uwNXj6pDMR/yHpD08c9bHcgMzuz+aDjzPm+rTEdYkMD3T6dvDMeg9fTaa9oconac90nvAz2Jpm54+snA6i2Rfr/XTl5dtoEgbKBK2gSK5+cTylwKZwJzxt9SZj2wDRdpAESz0JwlYFXoj57RSiF7PIDUnHM3CqupGM2hVZaO5u3YZhHhSyknRyjd9M6JR5X6knNfIXRxs5nobKNIGirSBIm2gSBso0gaKJKKOcgumEgnCPJYwTQ/dtT+FUQGSU0yfyMHCdK+0bU9VtzBbUMFclD/0D0KtwYDwR09y3iyt2IBkVpX/KKsuKWQfu9LZRkyomKWuEqbOgTfEfnDwauQHj6rOfXDYdagPDqsZ5oNDr0d8cGgKvAcHqUh7cLANsR4c/FOQHty+VDgPDlOR8uBgyxmPNlAEvT899MroDqZpUYxnO1iuwxr0irkOfYDvd+gO8e0+xiNarZFg/mSEhzUaNkZ5jD7tDHXi6TC+w6mVHzr20scfy/voKiBKQn6waAn3+CNRDfHH0fbjGB/hz6RLi/6JYcRHZ+5jVHAEZ9CtH/pT2MsiWt15uZ7OffKjCwHjERZzRqPTivAXsoc/mlDTJdcH5N/iytjhWARbQgQLXJoLwnk8Cr35rJlgCvLpA5qmVAoAU+Qic8d0N0kGQBGHVQCDFj/8HSMeBsUVSwQnzaEKYYywOQn1Pbm9ktGbaNsryVExixGWD5CzVq3inTSzj10hDo4mHjk3s4e04QzYiVZNFby6r4oNFPnzm7Pzt6//9MP5m7e4ySg04kIMGRMnHnnLL+SVffR8+aIhj/nz6epFUy5ziaXkM3/eXaI6OLxmjOayRmTCbcJqLtE2ZvPnDsI4XqTs4M9xM+Kbqr5zCUvO8+c2HLnzr9+B75W0wrsjjW5gfFPFlH70osLWz7v2i02rN+Vjj6+EhpzsEq26l12eoJShPTlBsY37WAJLY7tC2+963t/tPwW7hehMfBmfiiu6K3EbNGOUl8f5GVrltxfmE3jlZas075bfVPqp7PKbHQi/fPzXeq45SN0I0VfQ3AhGWWEnssNr5A2FEa5HXE5zf7PJ5pcOgkhu8PNzf7FcIwjgfukRAsWQTIOP6H98F3/j30QuJP9KdpXF6WzLvShw7j/vzv1fvx57UgJ+m0odlkiQ1K27nr/AmECMACLvI6n4Gnr8N/XoV42XaSpYprlYmW2oTOoJX/XRXj1QZtHUI7jBIJkaMTKph+42REYhQmZBSS+NZMZ8lokxiyfJilk0/+x7t3iqhx4uAJEOgyuh4NGCL/f089jisE6XXr4QIoO07nngXCNBxQ4xsyJyXH755/8HgV9C91f+AgA=", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:36:01 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"f04b4c4c1167ea310b3c3566626c2b3b31c83c914c06fa573516ee82f01afb1e\""], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["53"], "X-RateLimit-Reset": ["1635719751"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["7"], "Accept-Ranges": ["bytes"], "Transfer-Encoding": ["chunked"], "X-GitHub-Request-Id": ["BE9A:1399:C52239:25ACDF8:617F0C40"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/pulls?sort=created&direction=desc&per_page=100"}, "recorded_at": "2021-10-31T21:36:01"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/Repository_pull_requests_accept_sort.json b/tests/cassettes/Repository_pull_requests_accept_sort.json index 8effc70bd..fadd80a1d 100644 --- a/tests/cassettes/Repository_pull_requests_accept_sort.json +++ b/tests/cassettes/Repository_pull_requests_accept_sort.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.drax-preview+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/betamax"}, "response": {"body": {"encoding": "utf-8", "string": "{\"message\":\"Moved Permanently\",\"url\":\"https://api.github.com/repositories/11439734\",\"documentation_url\":\"https://developer.github.com/v3/#http-redirects\"}"}, "headers": {"Server": "GitHub.com", "Date": "Fri, 05 Jan 2018 16:02:27 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "154", "Status": "301 Moved Permanently", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "49", "X-RateLimit-Reset": "1515169065", "Location": "https://api.github.com/repositories/11439734", "X-GitHub-Media-Type": "github.v3; param=drax-preview; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.023136", "X-GitHub-Request-Id": "ED7E:2D7EA:BDF8EF:14B8569:5A4FA193"}, "status": {"code": 301, "message": "Moved Permanently"}, "url": "https://api.github.com/repos/sigmavirus24/betamax"}, "recorded_at": "2018-01-05T16:02:27"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.drax-preview+json", "Connection": "keep-alive", "Accept-Charset": "utf-8"}, "method": "GET", "uri": "https://api.github.com/repositories/11439734"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1Y227jNhD9FUOvtU1b9iYbAcW26AdsUQR96ItBS7TFRiJVkrLXEfLvPSR1s7FOHOY1wCJr0zyHh0POcGaaiGdRslyuVw/3q/U0ErRkURJtmaEl/RFNo11dFJvz0epEht/lUTAVJU1UyD0XA7Q6Aey47+Kv8V38MI3ogRqqNrUqMC03ptIJIX5QL+Z7bvJ6W2umUikME2aeypLUpMN/O/y6BuVetTSWO8LABV3FWyYPB53u1DpJuSmLCwl+ZTe/3ZebuZNFIY/AXyp+dQnSw3oKLvYhFIA1RJqcwWTYxovdPNfmnXIcpCH2vw3PLInGISiWvU9SC4Ige94vDVGsko6t3upU8cpwKd4p7QwKKqn2VPBnGkAFqAaDFfVOEQ4CKDvgyr0T6zENqRQ/0PRkzaFYyvgB1g3huwCDzpwq647fR5axNueGbWhWWn/b0UKzl2nkNBhMdgM33/ORJ2esP0gs+fvk7z/+mvCSG3ceE/zK94JlEymK02Qn1aQ6mVyKmWL/1Qx3bA5hGH7qFbzqmM7sg7uNZFiON87hChiuByhkPLFTIINFNgR/W19JEQPoVipq5Ftx4JqoM4qGjL/aC2MYLQPFOigocilDLeagoOBa1+ymO3ttm45Bk84lRF1ufcy6xRGukXos9FHtbh8LtFQPb0gXSreKijQPJezQDfGf3EnSfaA8iwTBtpDbQAY8YcTBG6Jz6p8KswlXZPks+oxOsd0H5Fl0T2dU8Fk6aRbek+FtMjjWQG0dmjSt5Qoq9jXdh/L1cJyofTX39PnNHOLa/R/wILNpkeLb+iOhaGCw6vzTDT8NNd1AMNC5TOD15OLqdke5hNtwiecnUFsLPrvAHyK09+6S1H5/O224tt0O3ZAhWvpA3P4SZsU2Ev+Mvc2sg03q8nJNml8qanIbZbBIRRULE9qCSbOlSGHm83mTM+pS1JKpYP/zWJBQleZIxcK0NR0aOUVJjUt4d1ZahgS4kDQLtGEPB5U/qDB9Hju+ORUKtUBRDjrmKnmBlE6K0Bg44MesQhq+4+kt+f01lzmjaL5pLlI2pUUxxS00POW4lyib7DkhbWOh9vBYSEcx7JP6guGKBlpXMY9uiK+/MlYV8vSBuDEisC6oGPL+bEMNsvZ4sVzNFvez5d3jYpXE+Bf/gzl1lZ3NwYR4Fn99jONkvU6+rOycqtb5iAZTFrPV8jFe4ncU8XYKQmB7W/EJtfvPCucuk7dVOCBa5wPktwGQ9JX2BSAtcO0ufOKWdQ6Xb85rIAjLZckqvPKjVkQraQ6DZii7M5nqOQpLuwv+jInrL2hijJ70VNYCRo8f7qfRkRpkk3hIx4NdKoA1/nTFkl2X6o133igxqraVGkYqJf9lqdHjsSFUjCYe+RMfajyLtJlKP+KLp1bDeoFIypWSbc9FwM37sIjuSVspyoqJVlKnfnkHB+IpExrbbmw9hS24VgR20DaDvrdfdZX9QLUUJZ7eVX32I2pSX48lVsdoEdsSGgzW2i9jO1oXZuPTaaxWUm3ccuOuwGefaXCbzz7T0EN8vSP32Wc674IilTlrUsHJbu8zCWaOaLN0kcL69riOaEPPcvXyP+fzRoBaFgAA", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Fri, 05 Jan 2018 16:02:27 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "48", "X-RateLimit-Reset": "1515169065", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"57d682cb6e791fa91aac1d60a38d1963\"", "Last-Modified": "Thu, 28 Dec 2017 22:44:53 GMT", "X-GitHub-Media-Type": "github.v3; param=drax-preview; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.036906", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "ED7E:2D7EA:BDF8FA:14B8576:5A4FA193"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repositories/11439734"}, "recorded_at": "2018-01-05T16:02:27"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/betamaxpy/betamax/pulls?sort=updated&direction=asc&per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Fri, 05 Jan 2018 16:02:27 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "47", "X-RateLimit-Reset": "1515169065", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"eaf6b3270c5e240e5ec224ddbbfa991f\"", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.216596", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "ED7E:2D7EA:BDF906:14B8589:5A4FA193"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/betamaxpy/betamax/pulls?sort=updated&direction=asc&per_page=100"}, "recorded_at": "2018-01-05T16:02:27"}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/betamax"}, "response": {"body": {"encoding": "utf-8", "string": "{\"message\":\"Moved Permanently\",\"url\":\"https://api.github.com/repositories/11439734\",\"documentation_url\":\"https://docs.github.com/v3/#http-redirects\"}"}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:36:01 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Content-Length": ["149"], "Location": ["https://api.github.com/repositories/11439734"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Vary": ["Accept-Encoding, Accept, X-Requested-With"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["52"], "X-RateLimit-Reset": ["1635719751"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["8"], "X-GitHub-Request-Id": ["BE9C:3733:2C0B7D:9438BE:617F0C41"]}, "status": {"code": 301, "message": "Moved Permanently"}, "url": "https://api.github.com/repos/sigmavirus24/betamax"}, "recorded_at": "2021-10-31T21:36:01"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"]}, "method": "GET", "uri": "https://api.github.com/repositories/11439734"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1Ya2/bNhT9K4G/LrFi5W0g6IKtKzag8dYaW5FhMCiJtphQokZSdm0h/32HpF426jyYL/tQoGhsmufw8PJe8t5bDVgyGI9GpydXFyenh4NcJHRmhgYff36/mvDfePzhakO+fFrG+cPXj9M/NpNpvLm9ub4eYDLJKGZGVJOMfMXAvOR8tj1arIPu90KyJdHAzAlX9HAgVjmVg3E14GLB8o6qWIPMCjsPL8Pz8GpH2HrycLW+C38pyZciTT7wZXT/Pvx4v1jf3v96BijBKkTOSsnBmWpdqHEQuEE1XDCdllGpqIxFrmmuh7HIgjJo1nq3vD4Fx0LWLNYaGNhhK1jN5OCgU81OrfxUZ3xHgVvZzq9tYmfOBediBfyu4CeXCFpYS8HyhQ8FYFUgdEphMWzj0WyeKf1KORZSBeYPHMiQKJyBpMnrJNUgCDK+8VgFkhbCspWRiiUrNBP5K6VtQUEl5ILkbEM8qABVYDCiXinCQgClS7jcK7EOUwU2fuK1MYekMWVLWNeHbwcMOr0uTChPepYxNmeazkiSmdi0Ifv4Yr/uRX1C24PDEjcHf/706YBlTFv7H+BXtshpciByvj6YC3lQrHUq8iNJ/y0pfGoIIRh+aG+NJwPRmrkLr54Mw/GM3feAEWqAQsYDXXsyGGQV4P86NmLEPImEJFo8F/f7RG1RVEH/q3EQTUnmKdZCQZEK4WsxCwUFU6qkL/LRfdu0DCpoQiAvs8jdUS9x/H2kDgt9RFnvo56WauFV0FydkSR5nPoSNugqcJ/sSZKFpzyDBEHEReTJgCcrsPAqUClxT4Oe+SsyfAa9RSfp/A3yDLql09L7LK00A2/J8BZpHKuntgYdVLXlOMkXJVn48rVwnKh5JRdk82zOsM//OzzITBokWVS+5SrqGIw691QjTn1N1xF0dPblfzqZ2LvdXu5gN5zh+fHUVoO3HPhNhMbvdknN9+fThH3bbdBV0N2W7iKuf/GzYn0Tf4u9zqS9TWrzcBVUPxREp+aWwSIFkdRPaA0OqoggZRkOh1VKiU1JMyq9489hQUJknCL18tNWNWjkFBnRNsGdG2kJEl4uSOJpwxYOKndQfvoctu85BYo6T1EW2ufKGEdKJ3LfO7DD91lzodmcxS/J5/eFzBZF9U6xPKaHhPNDeKFmMYNfokwy54S0jfraw2EhHYWzS+I5hYt6WldSh64CV28ltOBi/YZ7o0dgQlBS1OrJjGhk7eHx6OTo+OJodD49PhmH+BfeYU5ZJP054ehodHwUYs75+OxyfHph5hSlSjsaN2UUTkcn49HlODwzU3AF1t6KTyjVv1UoN5m8qboBUSrtID92gHFbWe8AYg6324mJl6yz3H1zngJBWCoyWuCV73UeaklDGDRBmZ2IWA1RSJpdsA0mno3CrSc9FmUOo59eoiGzIhrZJB7S/mCTCmCN322xZNYlauaCdzDWskR3xYwUUtzTWKv+WHdV9Cau2ANrKyyLNJlKO+KKp1rDGXRlTEpRt1hyhHl7LaJbUnd3EqZIxGk3IAqa1xqb7YSg4iymuYIdKlNgYU+2F4Et1Z2kSf1VFclX15u6ndx8/vz+0/TXyS2m2XrQaei3r+Lz6Qd+f/fX2eZuenM9QOmKeBarmdkKYrmxCFMzTbOC9/tSWhQsxub/ts0jLOFKUnxA5SxkYuCmwlLmUsCnZSwH/+APUyxinGmziaKMsDH86IrHsTFazwCDsdl6c7r1YSd0TkquZy73B0lGlLamMBJnzoW1eKCox92G+62M742074207vb73kgzXd3ttmzbRfg/NNJyqle4ipqb0NwP/cKpvmtHF4//AX8ZMrOkFwAA", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:36:01 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"e5ff9afac3b34c69c115740cb3277ea2e049c1054ed7c8bbcbe3d6e90518d478\""], "Last-Modified": ["Tue, 26 Oct 2021 06:58:47 GMT"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["51"], "X-RateLimit-Reset": ["1635719751"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["9"], "Accept-Ranges": ["bytes"], "Content-Length": ["1386"], "X-GitHub-Request-Id": ["BE9C:3733:2C0B80:9438C5:617F0C41"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repositories/11439734"}, "recorded_at": "2021-10-31T21:36:01"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"]}, "method": "GET", "uri": "https://api.github.com/repos/betamaxpy/betamax/pulls?sort=updated&direction=asc&per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 21:36:01 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Cache-Control": ["public, max-age=60, s-maxage=60"], "Vary": ["Accept, Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"0b205be33e731e92a9acb38eb85aabd2f5cde6d2e7382da6e248714cf0d06e21\""], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-RateLimit-Limit": ["60"], "X-RateLimit-Remaining": ["50"], "X-RateLimit-Reset": ["1635719751"], "X-RateLimit-Resource": ["core"], "X-RateLimit-Used": ["10"], "Accept-Ranges": ["bytes"], "Transfer-Encoding": ["chunked"], "X-GitHub-Request-Id": ["BE9C:3733:2C0B85:9438D1:617F0C41"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/betamaxpy/betamax/pulls?sort=updated&direction=asc&per_page=100"}, "recorded_at": "2021-10-31T21:36:01"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/cassettes/ReviewComment_reply.json b/tests/cassettes/ReviewComment_reply.json index 5334853df..e39688fcb 100644 --- a/tests/cassettes/ReviewComment_reply.json +++ b/tests/cassettes/ReviewComment_reply.json @@ -1 +1 @@ -{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "Basic "}, "method": "GET", "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Thu, 25 Jan 2018 23:32:50 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4999", "X-RateLimit-Reset": "1516926770", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"52629ae3dce4404a8b6559947ff4c9b9\"", "Last-Modified": "Tue, 26 Dec 2017 15:52:13 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.211420", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "975A:2D36F:158D40F:3CC0B47:5A6A6922"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "recorded_at": "2018-01-25T23:32:50"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "Basic "}, "method": "GET", "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2/comments?per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1XyW7bMBD9FYE9xo6szRvSxCiQYxcEKQq0KQRKoiQisqiSlF3X8L93SMmO7dpK5CynnrTNe3wcDudRP5ao5Bkao1TKQoxNExf0PKEyLYPzkE1NTgomzOqFUyzMiGREEj9kuSS5FGZRZpkwIXKqH61erz8auIMe6iD1yefkV0mEhOuMkrlPIzS2Ldey+l6vg9TTBtFBEY1jPy3ze5AzmRhdyzizjMnkLu9O8SIghmBTIlOaJ0ZAMpYnwkgJJx2j+pozeZefVfdzYoQ4hw/3xPhyI66UGixT4JUgRj0xQSVlOajpIMZpQnOc+Ttv1Zyo1IqRG8XWyIscz7bsnhUGI+wN+04YDC1iWVaMcRwMSN/rA/OG7ER8KQhH4yXKGGiCoQVNpnhGeSlsF+h1At3e0IH04RmWmPt766dfCqdeREVXL5Zez9Ks0Fez94ou4TWJnia8aCwGRSbMPUWpnGZ7GrbqZy84ZlnG5sCyr3q36v4dyNwgQWR1D4VwIgsglyaTUD2+GmmlEkGFbC9Ko5awPaDCaaR4BCSfk6i1sBoHsuY5KFrqjacJy0CEnBaqWtsL3EHr6kxwTv/g09gALYBE94TWM9QoQJOZ6hSt4RVsaRacznC4UKnhJCR0Bsk+kXIPD4xyURDYB1/VHoTUU+h0OJqqfRjjTJBVBwUsWkDELbQRo+56hmQGTC5bwA2gQk6wBFFYQhx0i0G3Z3ct+9bqj11n7LjfIaYsoqaYkYpp3lfNHdm030VUhKUQUDU+P9qVG3f701q/DVJxKVPGfSwEC6muLZj652+frm/go5/R/F6oliZIFqtryglcX9xxYHVUzg6MsNWPTswbcG/b2YExTvJNG63qmvIr6eiiuDxWWxdmcQn5VBXoS/JbldexULTqvIave/0BCGj09YHjbPs6IP77uj4X7Pt6kjr1WURbuuO5jjoSNXm6fdzTK/gzTP1BziN9ZyO7lZXX9Ke7+C7Bcwx8zfQs716TvJxtbxi3/R7qprVjr4namvUa196n18iXsegHHTvuDql4sjvfKDdW/wngzOtfE4MKIy7zc+Bpcujh2Bs85tDrmEd2iv6JOvbPdNChD/TX13Toj9cfP7ydRavJvZZF19xvZtFNBXbAppvCoR4pHNFUxfqS6d/NzXFt9fMv218ZNp8PAAA=", "string": ""}, "headers": {"Server": "GitHub.com", "Date": "Thu, 25 Jan 2018 23:32:50 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4998", "X-RateLimit-Reset": "1516926770", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"641ff7f4ced7f8c66525f3506e0c4e85\"", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.151952", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "975A:2D36F:158D41C:3CC0B78:5A6A6922"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2/comments?per_page=100"}, "recorded_at": "2018-01-25T23:32:50"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"body\": \"Replying to comments is fun.\", \"in_reply_to\": 100697470}"}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Content-Length": "66", "Authorization": "Basic "}, "method": "POST", "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2/comments"}, "response": {"body": {"encoding": "utf-8", "string": "{\"url\":\"https://api.github.com/repos/github3py/delete_contents/pulls/comments/163999672\",\"pull_request_review_id\":91708465,\"id\":163999672,\"diff_hunk\":\"@@ -1 +1 @@\\n-maybe something belongs here, maybe not\\n+maybe we can make PRs?\",\"path\":\"test\",\"position\":2,\"original_position\":2,\"commit_id\":\"4df195d3521201cb9a5863cb81e111faafb7e656\",\"original_commit_id\":\"4df195d3521201cb9a5863cb81e111faafb7e656\",\"user\":{\"login\":\"gh3test\",\"id\":2354350,\"avatar_url\":\"https://avatars2.githubusercontent.com/u/2354350?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/gh3test\",\"html_url\":\"https://github.com/gh3test\",\"followers_url\":\"https://api.github.com/users/gh3test/followers\",\"following_url\":\"https://api.github.com/users/gh3test/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/gh3test/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/gh3test/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/gh3test/subscriptions\",\"organizations_url\":\"https://api.github.com/users/gh3test/orgs\",\"repos_url\":\"https://api.github.com/users/gh3test/repos\",\"events_url\":\"https://api.github.com/users/gh3test/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/gh3test/received_events\",\"type\":\"User\",\"site_admin\":false},\"body\":\"Replying to comments is fun.\",\"created_at\":\"2018-01-25T23:32:51Z\",\"updated_at\":\"2018-01-25T23:32:51Z\",\"html_url\":\"https://github.com/github3py/delete_contents/pull/2#discussion_r163999672\",\"pull_request_url\":\"https://api.github.com/repos/github3py/delete_contents/pulls/2\",\"author_association\":\"MEMBER\",\"_links\":{\"self\":{\"href\":\"https://api.github.com/repos/github3py/delete_contents/pulls/comments/163999672\"},\"html\":{\"href\":\"https://github.com/github3py/delete_contents/pull/2#discussion_r163999672\"},\"pull_request\":{\"href\":\"https://api.github.com/repos/github3py/delete_contents/pulls/2\"}},\"body_html\":\"

Replying to comments is fun.

\",\"body_text\":\"Replying to comments is fun.\",\"in_reply_to_id\":100697470}"}, "headers": {"Server": "GitHub.com", "Date": "Thu, 25 Jan 2018 23:32:51 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1989", "Status": "201 Created", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4997", "X-RateLimit-Reset": "1516926770", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"de5eaf2ccc66b194b8a3768d058a1df2\"", "Location": "https://api.github.com/repos/github3py/delete_contents/pulls/comments/163999672", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.466106", "X-GitHub-Request-Id": "975A:2D36F:158D427:3CC0B98:5A6A6922"}, "status": {"code": 201, "message": "Created"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2/comments"}, "recorded_at": "2018-01-25T23:32:51"}], "recorded_with": "betamax/0.8.0"} +{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "response": {"body": {"encoding": "utf-8", "base64_string": "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", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:43:07 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"4239dc034be4a18879c23932baf0e9a954d2314c3f942d11a2602bc8bae6acaa\""], "Last-Modified": ["Sun, 31 Oct 2021 15:32:12 GMT"], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4985"], "X-RateLimit-Reset": ["1635696820"], "X-RateLimit-Used": ["15"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["BE8A:7931:22519D:7B3E18:617EB98B"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2"}, "recorded_at": "2021-10-31T15:43:07"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token "]}, "method": "GET", "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2/comments?per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+2ZbXPaOBCA/4rH9zEQWzY2L9O0aSe5Xj5ALzmSprneeIQtbF2M5VoyFJj891v5hQIBEgi5uenxIWMj765W693VY+XPqZomodpSAyFi3tI0HNNjn4og7R27bKAlJGZcywfMeKx5JCSCOC6LBIkE1+I0DLkGkoPsJ9J1u1mv1XW1ospHTkK+pYQLuA4pGTnUU1sGqiFkW3pFlb9mGhU1Yh7JJNT22YX+KfyAeh+//3F3+yu6u+3o14MbA3++MS+Npuh9vkm9s/NR++yL1Zlcmu33Jycwo0f7fSdIo3swcXqqVJFyhJTT069RdYDHPaJwNiAioJGv9EjIIp8rAUlIRcmfRkx8jY7y+xFRXBzBg3ui/H7F38nlYBGAXQGrkb8Yp4KyCJZTUVlCfRrh0FkYlUGhIl9QzeujpuWZloEMHbm9JrYatun2GogghPoY93t1Yls2WJ4Z21E/5SRRW1M1ZOATOMypP8BDmqTcqIH57A3U9IYJ8Z8P+KV9c9sJ3b8v9PaZPykCiodY4MRZypBskBdZIqcrsiFLmFTLrb8bnsjp/KSwkb1XGNiYbdIY15Y8DsQgXHJhLkGXhPssDNkIrCw7vZjWjyfSZprgZH4PibKjFdCcakxAdjlypgcZCMrF9k5lWlOoPygh6kk7HGKfEG9rxwo9cGsUgUfTrLIzg2mPuwmNZTZv7+CCdpa9Po7oBO9mDbQ5GMmaztYrzLRAmwxlK9paPVebanFCh9gdy9AkxCV0CMHe0eSSPlgU45hAHVzLGoXQU2il2BvIOu3jkJOHitpj3hgkutBmlKKtKoIpsLhwDDeg5SYEC3AKC5CDblKv6kYVGV1kt2pmy6zdgUwae5tkmlJmc11tbvma8YtHuZtyDlnjJGvb/sZqf97eYoCrOBUBSxzMOXNplluw9PZ5+8P5FTx1Qhrdc9nzOAn78hokBK5739Pg9cigrZhhriHtGDiwPb9hrphjp53ZUB+KpHJy19U38dt1yfVGi99CPGUKOoJ8l/m1ThTEIA3drMylr3t40Y8hAnpUOQWUDhOww7osjcAv2LyOUHap5pcQpz5szzAQMJZgKCG4hX2pD/0Xdh45TnCSaybMvSf5LRkTcF+HEMn+KGQmQX1GQC5zG/HjR/kIp95MOFdEc1qzkVxMvbr4+FtXfai8Rqwsuw4vZCNw1U1zHrhAY3fgujY6owNwlcC2DFx+YBaQmLGWadVMCbsrYWvS6V7C33tJr7vBVm7+BbT1w90nNoTZsrZirML87ni1aOAlZFVaehFUlUb2x1Mzi/MgBvmwNUqVhralqFJve4AqNffDTj/8WMAuCMWzselKYpL8wANkKvcThXKln0bHYGcTOjVaVv0pdCplnqiU7PN53dfySnRa0cD3sKP+R9BJLu610Kmw/a+h06YEW4FPm8RfH6EgOD8hQgHGwCeHLHRHsOx4Zfb5sXe6ss1ms2nXZSGto6smquuNmm0VdFVq7EBXRntyb33qfjHb/oGuDnT1nBOMRTiCYy9I1K0OrxYNHOhq1Rl4flh4oCv1id1sma4aVR1VDatrwKmU0bLQKrpaJbNPulrXwH8Kupot7hXoat72ga6W/stVBud/Rld//QN+L0brLhwAAA==", "string": ""}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:43:07 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Transfer-Encoding": ["chunked"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["W/\"59b9ce59ff6c041ec7a1b3e0b8cad7c0c09805b13913598c9784caeb91ef1830\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4984"], "X-RateLimit-Reset": ["1635696820"], "X-RateLimit-Used": ["16"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "Content-Encoding": ["gzip"], "X-GitHub-Request-Id": ["BE8A:7931:2251A2:7B3E1F:617EB98B"]}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2/comments?per_page=100"}, "recorded_at": "2021-10-31T15:43:07"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"body\": \"Replying to comments is fun.\", \"in_reply_to\": 100697470}"}, "headers": {"User-Agent": ["github3.py/3.0.0"], "Accept-Encoding": ["gzip, deflate"], "Accept": ["application/vnd.github.v3.full+json"], "Connection": ["keep-alive"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Content-Length": ["66"], "Authorization": ["token "]}, "method": "POST", "uri": "https://api.github.com/repos/github3py/delete_contents/pulls/2/comments"}, "response": {"body": {"encoding": "utf-8", "string": "{\"url\":\"https://api.github.com/repos/github3py/delete_contents/pulls/comments/739840720\",\"pull_request_review_id\":793732794,\"id\":739840720,\"node_id\":\"PRRC_kwDOAwJb1s4sGRLQ\",\"diff_hunk\":\"@@ -1 +1 @@\\n-maybe something belongs here, maybe not\\n+maybe we can make PRs?\",\"path\":\"test\",\"position\":2,\"original_position\":2,\"commit_id\":\"4df195d3521201cb9a5863cb81e111faafb7e656\",\"original_commit_id\":\"4df195d3521201cb9a5863cb81e111faafb7e656\",\"user\":{\"login\":\"sigmavirus24\",\"id\":240830,\"node_id\":\"MDQ6VXNlcjI0MDgzMA==\",\"avatar_url\":\"https://avatars.githubusercontent.com/u/240830?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/sigmavirus24\",\"html_url\":\"https://github.com/sigmavirus24\",\"followers_url\":\"https://api.github.com/users/sigmavirus24/followers\",\"following_url\":\"https://api.github.com/users/sigmavirus24/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/sigmavirus24/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/sigmavirus24/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/sigmavirus24/subscriptions\",\"organizations_url\":\"https://api.github.com/users/sigmavirus24/orgs\",\"repos_url\":\"https://api.github.com/users/sigmavirus24/repos\",\"events_url\":\"https://api.github.com/users/sigmavirus24/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/sigmavirus24/received_events\",\"type\":\"User\",\"site_admin\":false},\"body\":\"Replying to comments is fun.\",\"created_at\":\"2021-10-31T15:43:07Z\",\"updated_at\":\"2021-10-31T15:43:07Z\",\"html_url\":\"https://github.com/github3py/delete_contents/pull/2#discussion_r739840720\",\"pull_request_url\":\"https://api.github.com/repos/github3py/delete_contents/pulls/2\",\"author_association\":\"MEMBER\",\"_links\":{\"self\":{\"href\":\"https://api.github.com/repos/github3py/delete_contents/pulls/comments/739840720\"},\"html\":{\"href\":\"https://github.com/github3py/delete_contents/pull/2#discussion_r739840720\"},\"pull_request\":{\"href\":\"https://api.github.com/repos/github3py/delete_contents/pulls/2\"}},\"body_html\":\"

Replying to comments is fun.

\",\"body_text\":\"Replying to comments is fun.\",\"reactions\":{\"url\":\"https://api.github.com/repos/github3py/delete_contents/pulls/comments/739840720/reactions\",\"total_count\":0,\"+1\":0,\"-1\":0,\"laugh\":0,\"hooray\":0,\"confused\":0,\"heart\":0,\"rocket\":0,\"eyes\":0},\"start_line\":null,\"original_start_line\":null,\"start_side\":null,\"line\":1,\"original_line\":1,\"side\":\"RIGHT\",\"in_reply_to_id\":100697470}"}, "headers": {"Server": ["GitHub.com"], "Date": ["Sun, 31 Oct 2021 15:43:08 GMT"], "Content-Type": ["application/json; charset=utf-8"], "Content-Length": ["2425"], "Cache-Control": ["private, max-age=60, s-maxage=60"], "Vary": ["Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With"], "ETag": ["\"832e29e55d01fa66b6442e4c7f17778e3607b08280e3d9f28d295eb073fa8210\""], "X-OAuth-Scopes": ["admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages"], "X-Accepted-OAuth-Scopes": [""], "github-authentication-token-expiration": ["2021-11-23 16:18:51 UTC"], "Location": ["https://api.github.com/repos/github3py/delete_contents/pulls/comments/739840720"], "X-GitHub-Media-Type": ["github.v3; param=full; format=json"], "X-RateLimit-Limit": ["5000"], "X-RateLimit-Remaining": ["4983"], "X-RateLimit-Reset": ["1635696820"], "X-RateLimit-Used": ["17"], "X-RateLimit-Resource": ["core"], "Access-Control-Expose-Headers": ["ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset"], "Access-Control-Allow-Origin": ["*"], "Strict-Transport-Security": ["max-age=31536000; includeSubdomains; preload"], "X-Frame-Options": ["deny"], "X-Content-Type-Options": ["nosniff"], "X-XSS-Protection": ["0"], "Referrer-Policy": ["origin-when-cross-origin, strict-origin-when-cross-origin"], "Content-Security-Policy": ["default-src 'none'"], "X-GitHub-Request-Id": ["BE8A:7931:2251A5:7B3E34:617EB98B"]}, "status": {"code": 201, "message": "Created"}, "url": "https://api.github.com/repos/github3py/delete_contents/pulls/2/comments"}, "recorded_at": "2021-10-31T15:43:08"}], "recorded_with": "betamax/0.8.1"} diff --git a/tests/integration/test_pulls.py b/tests/integration/test_pulls.py index ffe547db8..d8f393de8 100644 --- a/tests/integration/test_pulls.py +++ b/tests/integration/test_pulls.py @@ -16,7 +16,7 @@ def get_pull_request(self, repository="sigmavirus24/github3.py", num=235): def test_close(self): """Show that one can close an open Pull Request.""" - self.basic_login() + self.token_login() cassette_name = self.cassette_name("close") with self.recorder.use_cassette(cassette_name): p = self.get_pull_request( @@ -26,7 +26,7 @@ def test_close(self): def test_create_comment(self): """Show that a user can create a comment on a PR.""" - self.basic_login() + self.token_login() cassette_name = self.cassette_name("create_comment") with self.recorder.use_cassette(cassette_name): p = self.get_pull_request(num=423) @@ -43,7 +43,7 @@ def test_commits(self): def test_create_review_comment(self): """Show that a user can create an in-line reveiw comment on a PR.""" - self.basic_login() + self.token_login() cassette_name = self.cassette_name("create_review_comment") with self.recorder.use_cassette(cassette_name): p = self.get_pull_request(num=286) @@ -149,7 +149,7 @@ def test_pull_reviews(self): def test_reopen(self): """Show that one can reopen an open Pull Request.""" - self.basic_login() + self.token_login() cassette_name = self.cassette_name("reopen") with self.recorder.use_cassette(cassette_name): p = self.get_pull_request( @@ -175,7 +175,7 @@ def test_review_requests(self): def test_update(self): """Show that one can update an open Pull Request.""" - self.basic_login() + self.token_login() cassette_name = self.cassette_name("update") with self.recorder.use_cassette(cassette_name): p = self.get_pull_request( @@ -185,7 +185,7 @@ def test_update(self): def test_repository(self): """Show that the pull request has the owner repository.""" - self.basic_login() + self.token_login() cassette_name = self.cassette_name("single") with self.recorder.use_cassette(cassette_name): p = self.get_pull_request() @@ -210,7 +210,7 @@ class TestReviewComment(IntegrationHelper): def test_reply(self): """Show that a user can reply to an existing ReviewComment.""" - self.basic_login() + self.token_login() cassette_name = self.cassette_name("reply") with self.recorder.use_cassette(cassette_name): p = self.gh.pull_request("github3py", "delete_contents", 2) diff --git a/tests/unit/json/pull_request_example b/tests/unit/json/pull_request_example index 80774efdd..d6c389e2e 100644 --- a/tests/unit/json/pull_request_example +++ b/tests/unit/json/pull_request_example @@ -1,6 +1,7 @@ { - "id": 1, "url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347", + "id": 1, + "node_id": "MDExOlB1bGxSZXF1ZXN0MQ==", "html_url": "https://github.com/octocat/Hello-World/pull/1347", "diff_url": "https://github.com/octocat/Hello-World/pull/1347.diff", "patch_url": "https://github.com/octocat/Hello-World/pull/1347.patch", @@ -12,13 +13,12 @@ "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e", "number": 1347, "state": "open", - "title": "new-feature", - "body": "Please pull these awesome changes", - "body_html": "Please pull these awesome changes", - "body_text": "Please pull these awesome changes", - "assignee": { + "locked": true, + "title": "Amazing new feature", + "user": { "login": "octocat", "id": 1, + "node_id": "MDQ6VXNlcjE=", "avatar_url": "https://github.com/images/error/octocat_happy.gif", "gravatar_id": "", "url": "https://api.github.com/users/octocat", @@ -35,30 +35,26 @@ "type": "User", "site_admin": false }, - "assignees": [{ - "login": "octocat", - "id": 1, - "avatar_url": "https://github.com/images/error/octocat_happy.gif", - "gravatar_id": "", - "url": "https://api.github.com/users/octocat", - "html_url": "https://github.com/octocat", - "followers_url": "https://api.github.com/users/octocat/followers", - "following_url": "https://api.github.com/users/octocat/following{/other_user}", - "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", - "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", - "organizations_url": "https://api.github.com/users/octocat/orgs", - "repos_url": "https://api.github.com/users/octocat/repos", - "events_url": "https://api.github.com/users/octocat/events{/privacy}", - "received_events_url": "https://api.github.com/users/octocat/received_events", - "type": "User", - "site_admin": false - }], + "body": "Please pull these awesome changes in!", + "body_html": "Please pull these awesome changes in!", + "body_text": "Please pull these awesome changes in!", + "labels": [ + { + "id": 208045946, + "node_id": "MDU6TGFiZWwyMDgwNDU5NDY=", + "url": "https://api.github.com/repos/octocat/Hello-World/labels/bug", + "name": "bug", + "description": "Something isn't working", + "color": "f29513", + "default": true + } + ], "milestone": { "url": "https://api.github.com/repos/octocat/Hello-World/milestones/1", "html_url": "https://github.com/octocat/Hello-World/milestones/v1.0", "labels_url": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels", "id": 1002604, + "node_id": "MDk6TWlsZXN0b25lMTAwMjYwNA==", "number": 1, "state": "open", "title": "v1.0", @@ -66,6 +62,7 @@ "creator": { "login": "octocat", "id": 1, + "node_id": "MDQ6VXNlcjE=", "avatar_url": "https://github.com/images/error/octocat_happy.gif", "gravatar_id": "", "url": "https://api.github.com/users/octocat", @@ -89,18 +86,119 @@ "closed_at": "2013-02-12T13:22:01Z", "due_on": "2012-10-09T23:39:01Z" }, - "locked": false, + "active_lock_reason": "too heated", "created_at": "2011-01-26T19:01:12Z", "updated_at": "2011-01-26T19:01:12Z", "closed_at": "2011-01-26T19:01:12Z", "merged_at": "2011-01-26T19:01:12Z", + "merge_commit_sha": "e5bd3914e2e596debea16f433f57875b5b90bcd6", + "assignee": { + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/octocat_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/octocat_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "hubot", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/hubot_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/hubot", + "html_url": "https://github.com/hubot", + "followers_url": "https://api.github.com/users/hubot/followers", + "following_url": "https://api.github.com/users/hubot/following{/other_user}", + "gists_url": "https://api.github.com/users/hubot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hubot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hubot/subscriptions", + "organizations_url": "https://api.github.com/users/hubot/orgs", + "repos_url": "https://api.github.com/users/hubot/repos", + "events_url": "https://api.github.com/users/hubot/events{/privacy}", + "received_events_url": "https://api.github.com/users/hubot/received_events", + "type": "User", + "site_admin": true + } + ], + "requested_reviewers": [ + { + "login": "other_user", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/other_user_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/other_user", + "html_url": "https://github.com/other_user", + "followers_url": "https://api.github.com/users/other_user/followers", + "following_url": "https://api.github.com/users/other_user/following{/other_user}", + "gists_url": "https://api.github.com/users/other_user/gists{/gist_id}", + "starred_url": "https://api.github.com/users/other_user/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/other_user/subscriptions", + "organizations_url": "https://api.github.com/users/other_user/orgs", + "repos_url": "https://api.github.com/users/other_user/repos", + "events_url": "https://api.github.com/users/other_user/events{/privacy}", + "received_events_url": "https://api.github.com/users/other_user/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [ + { + "id": 1, + "node_id": "MDQ6VGVhbTE=", + "url": "https://api.github.com/teams/1", + "html_url": "https://github.com/orgs/github/teams/justice-league", + "name": "Justice League", + "slug": "justice-league", + "description": "A great team.", + "privacy": "closed", + "permission": "admin", + "members_url": "https://api.github.com/teams/1/members{/member}", + "repositories_url": "https://api.github.com/teams/1/repos" + } + ], "head": { - "label": "new-topic", + "label": "octocat:new-topic", "ref": "new-topic", "sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e", "user": { "login": "octocat", "id": 1, + "node_id": "MDQ6VXNlcjE=", "avatar_url": "https://github.com/images/error/octocat_happy.gif", "gravatar_id": "", "url": "https://api.github.com/users/octocat", @@ -119,9 +217,13 @@ }, "repo": { "id": 1296269, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5", + "name": "Hello-World", + "full_name": "octocat/Hello-World", "owner": { "login": "octocat", "id": 1, + "node_id": "MDQ6VXNlcjE=", "avatar_url": "https://github.com/images/error/octocat_happy.gif", "gravatar_id": "", "url": "https://api.github.com/users/octocat", @@ -138,54 +240,52 @@ "type": "User", "site_admin": false }, - "name": "Hello-World", - "full_name": "octocat/Hello-World", - "description": "This your first repo!", "private": false, - "fork": true, - "url": "https://api.github.com/repos/octocat/Hello-World", "html_url": "https://github.com/octocat/Hello-World", - "archive_url": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}", - "assignees_url": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}", - "blobs_url": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}", - "branches_url": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}", - "clone_url": "https://github.com/octocat/Hello-World.git", - "collaborators_url": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}", - "comments_url": "http://api.github.com/repos/octocat/Hello-World/comments{/number}", - "commits_url": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}", - "compare_url": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}", - "contents_url": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}", - "contributors_url": "http://api.github.com/repos/octocat/Hello-World/contributors", - "deployments_url": "http://api.github.com/repos/octocat/Hello-World/deployments", - "downloads_url": "http://api.github.com/repos/octocat/Hello-World/downloads", - "events_url": "http://api.github.com/repos/octocat/Hello-World/events", - "forks_url": "http://api.github.com/repos/octocat/Hello-World/forks", - "git_commits_url": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}", - "git_refs_url": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}", - "git_tags_url": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}", + "description": "This your first repo!", + "fork": false, + "url": "https://api.github.com/repos/octocat/Hello-World", + "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}", + "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}", + "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}", + "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}", + "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}", + "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}", + "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}", + "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}", + "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}", + "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors", + "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments", + "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads", + "events_url": "https://api.github.com/repos/octocat/Hello-World/events", + "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks", + "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}", + "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}", + "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}", "git_url": "git:github.com/octocat/Hello-World.git", - "hooks_url": "http://api.github.com/repos/octocat/Hello-World/hooks", - "issue_comment_url": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}", - "issue_events_url": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}", - "issues_url": "http://api.github.com/repos/octocat/Hello-World/issues{/number}", - "keys_url": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}", - "labels_url": "http://api.github.com/repos/octocat/Hello-World/labels{/name}", - "languages_url": "http://api.github.com/repos/octocat/Hello-World/languages", - "merges_url": "http://api.github.com/repos/octocat/Hello-World/merges", - "milestones_url": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}", - "mirror_url": "git:git.example.com/octocat/Hello-World", - "notifications_url": "http://api.github.com/repos/octocat/Hello-World/notifications{?since, all, participating}", - "pulls_url": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}", - "releases_url": "http://api.github.com/repos/octocat/Hello-World/releases{/id}", + "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}", + "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}", + "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}", + "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}", + "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}", + "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages", + "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges", + "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}", + "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}", + "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}", + "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}", "ssh_url": "git@github.com:octocat/Hello-World.git", - "stargazers_url": "http://api.github.com/repos/octocat/Hello-World/stargazers", - "statuses_url": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}", - "subscribers_url": "http://api.github.com/repos/octocat/Hello-World/subscribers", - "subscription_url": "http://api.github.com/repos/octocat/Hello-World/subscription", + "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers", + "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}", + "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers", + "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription", + "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags", + "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams", + "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}", + "clone_url": "https://github.com/octocat/Hello-World.git", + "mirror_url": "git:git.example.com/octocat/Hello-World", + "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks", "svn_url": "https://svn.github.com/octocat/Hello-World", - "tags_url": "http://api.github.com/repos/octocat/Hello-World/tags", - "teams_url": "http://api.github.com/repos/octocat/Hello-World/teams", - "trees_url": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}", "homepage": "https://github.com", "language": null, "forks_count": 9, @@ -198,13 +298,15 @@ "octocat", "atom", "electron", - "API" + "api" ], "has_issues": true, + "has_projects": true, "has_wiki": true, "has_pages": false, "has_downloads": true, "archived": false, + "disabled": false, "pushed_at": "2011-01-26T19:06:43Z", "created_at": "2011-01-26T19:01:12Z", "updated_at": "2011-01-26T19:14:43Z", @@ -214,19 +316,30 @@ "pull": true }, "allow_rebase_merge": true, + "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O", "allow_squash_merge": true, "allow_merge_commit": true, - "subscribers_count": 42, - "network_count": 0 + "allow_forking": true, + "forks": 123, + "open_issues": 123, + "license": { + "key": "mit", + "name": "MIT License", + "url": "https://api.github.com/licenses/mit", + "spdx_id": "MIT", + "node_id": "MDc6TGljZW5zZW1pdA==" + }, + "watchers": 123 } }, "base": { - "label": "master", + "label": "octocat:master", "ref": "master", "sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e", "user": { "login": "octocat", "id": 1, + "node_id": "MDQ6VXNlcjE=", "avatar_url": "https://github.com/images/error/octocat_happy.gif", "gravatar_id": "", "url": "https://api.github.com/users/octocat", @@ -245,9 +358,13 @@ }, "repo": { "id": 1296269, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5", + "name": "Hello-World", + "full_name": "octocat/Hello-World", "owner": { "login": "octocat", "id": 1, + "node_id": "MDQ6VXNlcjE=", "avatar_url": "https://github.com/images/error/octocat_happy.gif", "gravatar_id": "", "url": "https://api.github.com/users/octocat", @@ -264,54 +381,52 @@ "type": "User", "site_admin": false }, - "name": "Hello-World", - "full_name": "octocat/Hello-World", - "description": "This your first repo!", "private": false, - "fork": true, - "url": "https://api.github.com/repos/octocat/Hello-World", "html_url": "https://github.com/octocat/Hello-World", - "archive_url": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}", - "assignees_url": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}", - "blobs_url": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}", - "branches_url": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}", - "clone_url": "https://github.com/octocat/Hello-World.git", - "collaborators_url": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}", - "comments_url": "http://api.github.com/repos/octocat/Hello-World/comments{/number}", - "commits_url": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}", - "compare_url": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}", - "contents_url": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}", - "contributors_url": "http://api.github.com/repos/octocat/Hello-World/contributors", - "deployments_url": "http://api.github.com/repos/octocat/Hello-World/deployments", - "downloads_url": "http://api.github.com/repos/octocat/Hello-World/downloads", - "events_url": "http://api.github.com/repos/octocat/Hello-World/events", - "forks_url": "http://api.github.com/repos/octocat/Hello-World/forks", - "git_commits_url": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}", - "git_refs_url": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}", - "git_tags_url": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}", + "description": "This your first repo!", + "fork": false, + "url": "https://api.github.com/repos/octocat/Hello-World", + "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}", + "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}", + "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}", + "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}", + "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}", + "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}", + "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}", + "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}", + "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}", + "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors", + "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments", + "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads", + "events_url": "https://api.github.com/repos/octocat/Hello-World/events", + "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks", + "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}", + "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}", + "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}", "git_url": "git:github.com/octocat/Hello-World.git", - "hooks_url": "http://api.github.com/repos/octocat/Hello-World/hooks", - "issue_comment_url": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}", - "issue_events_url": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}", - "issues_url": "http://api.github.com/repos/octocat/Hello-World/issues{/number}", - "keys_url": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}", - "labels_url": "http://api.github.com/repos/octocat/Hello-World/labels{/name}", - "languages_url": "http://api.github.com/repos/octocat/Hello-World/languages", - "merges_url": "http://api.github.com/repos/octocat/Hello-World/merges", - "milestones_url": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}", - "mirror_url": "git:git.example.com/octocat/Hello-World", - "notifications_url": "http://api.github.com/repos/octocat/Hello-World/notifications{?since, all, participating}", - "pulls_url": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}", - "releases_url": "http://api.github.com/repos/octocat/Hello-World/releases{/id}", + "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}", + "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}", + "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}", + "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}", + "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}", + "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages", + "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges", + "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}", + "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}", + "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}", + "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}", "ssh_url": "git@github.com:octocat/Hello-World.git", - "stargazers_url": "http://api.github.com/repos/octocat/Hello-World/stargazers", - "statuses_url": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}", - "subscribers_url": "http://api.github.com/repos/octocat/Hello-World/subscribers", - "subscription_url": "http://api.github.com/repos/octocat/Hello-World/subscription", + "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers", + "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}", + "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers", + "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription", + "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags", + "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams", + "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}", + "clone_url": "https://github.com/octocat/Hello-World.git", + "mirror_url": "git:git.example.com/octocat/Hello-World", + "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks", "svn_url": "https://svn.github.com/octocat/Hello-World", - "tags_url": "http://api.github.com/repos/octocat/Hello-World/tags", - "teams_url": "http://api.github.com/repos/octocat/Hello-World/teams", - "trees_url": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}", "homepage": "https://github.com", "language": null, "forks_count": 9, @@ -324,13 +439,15 @@ "octocat", "atom", "electron", - "API" + "api" ], "has_issues": true, + "has_projects": true, "has_wiki": true, "has_pages": false, "has_downloads": true, "archived": false, + "disabled": false, "pushed_at": "2011-01-26T19:06:43Z", "created_at": "2011-01-26T19:01:12Z", "updated_at": "2011-01-26T19:14:43Z", @@ -340,10 +457,19 @@ "pull": true }, "allow_rebase_merge": true, + "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O", "allow_squash_merge": true, "allow_merge_commit": true, - "subscribers_count": 42, - "network_count": 0 + "forks": 123, + "open_issues": 123, + "license": { + "key": "mit", + "name": "MIT License", + "url": "https://api.github.com/licenses/mit", + "spdx_id": "MIT", + "node_id": "MDc6TGljZW5zZW1pdA==" + }, + "watchers": 123 } }, "_links": { @@ -372,33 +498,17 @@ "href": "https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e" } }, - "user": { - "login": "octocat", - "id": 1, - "avatar_url": "https://github.com/images/error/octocat_happy.gif", - "gravatar_id": "", - "url": "https://api.github.com/users/octocat", - "html_url": "https://github.com/octocat", - "followers_url": "https://api.github.com/users/octocat/followers", - "following_url": "https://api.github.com/users/octocat/following{/other_user}", - "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", - "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", - "organizations_url": "https://api.github.com/users/octocat/orgs", - "repos_url": "https://api.github.com/users/octocat/repos", - "events_url": "https://api.github.com/users/octocat/events{/privacy}", - "received_events_url": "https://api.github.com/users/octocat/received_events", - "type": "User", - "site_admin": false - }, - "merge_commit_sha": "e5bd3914e2e596debea16f433f57875b5b90bcd6", + "author_association": "OWNER", + "auto_merge": null, + "draft": false, "merged": false, "mergeable": true, - "mergeable_state": "unknown", - "review_comments": 0, + "rebaseable": true, + "mergeable_state": "clean", "merged_by": { "login": "octocat", "id": 1, + "node_id": "MDQ6VXNlcjE=", "avatar_url": "https://github.com/images/error/octocat_happy.gif", "gravatar_id": "", "url": "https://api.github.com/users/octocat", @@ -416,9 +526,10 @@ "site_admin": false }, "comments": 10, + "review_comments": 0, + "maintainer_can_modify": true, "commits": 3, "additions": 100, "deletions": 3, - "changed_files": 5, - "maintainer_can_modify": true + "changed_files": 5 } diff --git a/tests/unit/json/short_pull_request_example b/tests/unit/json/short_pull_request_example new file mode 100644 index 000000000..1a8c00f6e --- /dev/null +++ b/tests/unit/json/short_pull_request_example @@ -0,0 +1,520 @@ +{ + "url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347", + "id": 1, + "node_id": "MDExOlB1bGxSZXF1ZXN0MQ==", + "html_url": "https://github.com/octocat/Hello-World/pull/1347", + "diff_url": "https://github.com/octocat/Hello-World/pull/1347.diff", + "patch_url": "https://github.com/octocat/Hello-World/pull/1347.patch", + "issue_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347", + "commits_url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits", + "review_comments_url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments", + "review_comment_url": "https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347/comments", + "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e", + "number": 1347, + "state": "open", + "locked": true, + "title": "Amazing new feature", + "user": { + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/octocat_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false + }, + "body": "Please pull these awesome changes in!", + "body_html": "Please pull these awesome changes in!", + "body_text": "Please pull these awesome changes in!", + "labels": [ + { + "id": 208045946, + "node_id": "MDU6TGFiZWwyMDgwNDU5NDY=", + "url": "https://api.github.com/repos/octocat/Hello-World/labels/bug", + "name": "bug", + "description": "Something isn't working", + "color": "f29513", + "default": true + } + ], + "milestone": { + "url": "https://api.github.com/repos/octocat/Hello-World/milestones/1", + "html_url": "https://github.com/octocat/Hello-World/milestones/v1.0", + "labels_url": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels", + "id": 1002604, + "node_id": "MDk6TWlsZXN0b25lMTAwMjYwNA==", + "number": 1, + "state": "open", + "title": "v1.0", + "description": "Tracking milestone for version 1.0", + "creator": { + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/octocat_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false + }, + "open_issues": 4, + "closed_issues": 8, + "created_at": "2011-04-10T20:09:31Z", + "updated_at": "2014-03-03T18:58:10Z", + "closed_at": "2013-02-12T13:22:01Z", + "due_on": "2012-10-09T23:39:01Z" + }, + "active_lock_reason": "too heated", + "created_at": "2011-01-26T19:01:12Z", + "updated_at": "2011-01-26T19:01:12Z", + "closed_at": "2011-01-26T19:01:12Z", + "merged_at": "2011-01-26T19:01:12Z", + "merge_commit_sha": "e5bd3914e2e596debea16f433f57875b5b90bcd6", + "assignee": { + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/octocat_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/octocat_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "hubot", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/hubot_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/hubot", + "html_url": "https://github.com/hubot", + "followers_url": "https://api.github.com/users/hubot/followers", + "following_url": "https://api.github.com/users/hubot/following{/other_user}", + "gists_url": "https://api.github.com/users/hubot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hubot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hubot/subscriptions", + "organizations_url": "https://api.github.com/users/hubot/orgs", + "repos_url": "https://api.github.com/users/hubot/repos", + "events_url": "https://api.github.com/users/hubot/events{/privacy}", + "received_events_url": "https://api.github.com/users/hubot/received_events", + "type": "User", + "site_admin": true + } + ], + "requested_reviewers": [ + { + "login": "other_user", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/other_user_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/other_user", + "html_url": "https://github.com/other_user", + "followers_url": "https://api.github.com/users/other_user/followers", + "following_url": "https://api.github.com/users/other_user/following{/other_user}", + "gists_url": "https://api.github.com/users/other_user/gists{/gist_id}", + "starred_url": "https://api.github.com/users/other_user/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/other_user/subscriptions", + "organizations_url": "https://api.github.com/users/other_user/orgs", + "repos_url": "https://api.github.com/users/other_user/repos", + "events_url": "https://api.github.com/users/other_user/events{/privacy}", + "received_events_url": "https://api.github.com/users/other_user/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [ + { + "id": 1, + "node_id": "MDQ6VGVhbTE=", + "url": "https://api.github.com/teams/1", + "html_url": "https://github.com/orgs/github/teams/justice-league", + "name": "Justice League", + "slug": "justice-league", + "description": "A great team.", + "privacy": "closed", + "permission": "admin", + "members_url": "https://api.github.com/teams/1/members{/member}", + "repositories_url": "https://api.github.com/teams/1/repos", + "parent": null + } + ], + "head": { + "label": "octocat:new-topic", + "ref": "new-topic", + "sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e", + "user": { + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/octocat_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 1296269, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5", + "name": "Hello-World", + "full_name": "octocat/Hello-World", + "owner": { + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/octocat_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/octocat/Hello-World", + "description": "This your first repo!", + "fork": false, + "url": "https://api.github.com/repos/octocat/Hello-World", + "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}", + "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}", + "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}", + "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}", + "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}", + "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}", + "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}", + "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}", + "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}", + "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors", + "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments", + "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads", + "events_url": "https://api.github.com/repos/octocat/Hello-World/events", + "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks", + "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}", + "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}", + "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}", + "git_url": "git:github.com/octocat/Hello-World.git", + "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}", + "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}", + "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}", + "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}", + "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}", + "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages", + "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges", + "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}", + "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}", + "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}", + "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}", + "ssh_url": "git@github.com:octocat/Hello-World.git", + "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers", + "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}", + "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers", + "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription", + "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags", + "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams", + "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}", + "clone_url": "https://github.com/octocat/Hello-World.git", + "mirror_url": "git:git.example.com/octocat/Hello-World", + "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks", + "svn_url": "https://svn.github.com/octocat/Hello-World", + "homepage": "https://github.com", + "language": null, + "forks_count": 9, + "stargazers_count": 80, + "watchers_count": 80, + "size": 108, + "default_branch": "master", + "open_issues_count": 0, + "is_template": true, + "topics": [ + "octocat", + "atom", + "electron", + "api" + ], + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "has_pages": false, + "has_downloads": true, + "archived": false, + "disabled": false, + "visibility": "public", + "pushed_at": "2011-01-26T19:06:43Z", + "created_at": "2011-01-26T19:01:12Z", + "updated_at": "2011-01-26T19:14:43Z", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "allow_rebase_merge": true, + "template_repository": null, + "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O", + "allow_squash_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": true, + "allow_merge_commit": true, + "subscribers_count": 42, + "network_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "url": "https://api.github.com/licenses/mit", + "spdx_id": "MIT", + "node_id": "MDc6TGljZW5zZW1pdA==", + "html_url": "https://github.com/licenses/mit" + }, + "forks": 1, + "open_issues": 1, + "watchers": 1 + } + }, + "base": { + "label": "octocat:master", + "ref": "master", + "sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e", + "user": { + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/octocat_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 1296269, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5", + "name": "Hello-World", + "full_name": "octocat/Hello-World", + "owner": { + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/octocat_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/octocat/Hello-World", + "description": "This your first repo!", + "fork": false, + "url": "https://api.github.com/repos/octocat/Hello-World", + "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}", + "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}", + "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}", + "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}", + "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}", + "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}", + "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}", + "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}", + "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}", + "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors", + "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments", + "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads", + "events_url": "https://api.github.com/repos/octocat/Hello-World/events", + "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks", + "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}", + "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}", + "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}", + "git_url": "git:github.com/octocat/Hello-World.git", + "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}", + "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}", + "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}", + "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}", + "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}", + "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages", + "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges", + "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}", + "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}", + "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}", + "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}", + "ssh_url": "git@github.com:octocat/Hello-World.git", + "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers", + "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}", + "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers", + "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription", + "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags", + "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams", + "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}", + "clone_url": "https://github.com/octocat/Hello-World.git", + "mirror_url": "git:git.example.com/octocat/Hello-World", + "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks", + "svn_url": "https://svn.github.com/octocat/Hello-World", + "homepage": "https://github.com", + "language": null, + "forks_count": 9, + "stargazers_count": 80, + "watchers_count": 80, + "size": 108, + "default_branch": "master", + "open_issues_count": 0, + "is_template": true, + "topics": [ + "octocat", + "atom", + "electron", + "api" + ], + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "has_pages": false, + "has_downloads": true, + "archived": false, + "disabled": false, + "visibility": "public", + "pushed_at": "2011-01-26T19:06:43Z", + "created_at": "2011-01-26T19:01:12Z", + "updated_at": "2011-01-26T19:14:43Z", + "permissions": { + "admin": false, + "push": false, + "pull": true + }, + "allow_rebase_merge": true, + "template_repository": null, + "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O", + "allow_squash_merge": true, + "allow_auto_merge": false, + "delete_branch_on_merge": true, + "allow_merge_commit": true, + "subscribers_count": 42, + "network_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "url": "https://api.github.com/licenses/mit", + "spdx_id": "MIT", + "node_id": "MDc6TGljZW5zZW1pdA==", + "html_url": "https://github.com/licenses/mit" + }, + "forks": 1, + "open_issues": 1, + "watchers": 1 + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347" + }, + "html": { + "href": "https://github.com/octocat/Hello-World/pull/1347" + }, + "issue": { + "href": "https://api.github.com/repos/octocat/Hello-World/issues/1347" + }, + "comments": { + "href": "https://api.github.com/repos/octocat/Hello-World/issues/1347/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e" + } + }, + "author_association": "OWNER", + "auto_merge": null, + "draft": false +} diff --git a/tests/unit/test_pulls.py b/tests/unit/test_pulls.py index 270b668bc..88ddd6f92 100644 --- a/tests/unit/test_pulls.py +++ b/tests/unit/test_pulls.py @@ -8,6 +8,9 @@ get_pr_example_data = helper.create_example_data_helper( "pull_request_example" ) +get_short_pr_example_data = helper.create_example_data_helper( + "short_pull_request_example" +) get_pullreview_example_data = helper.create_example_data_helper( "pull_review_example" ) @@ -137,7 +140,7 @@ def test_merge_squash_message(self): ) def test_merge_with_custom_title(self): - """Show that user can merge a Pull Request with custom commit title""" + """Show that user can merge a Pull Request with custom commit title.""" self.instance.merge(commit_title="commit title") self.put_called_with( @@ -195,7 +198,19 @@ def test_attributes(self): ) assert not self.instance.merged assert self.instance.mergeable - assert not self.instance.rebaseable + assert self.instance.rebaseable + + +class TestShortPullRequest(helper.UnitHelper): + """ShortPullRequest unit tests.""" + + described_class = pulls.ShortPullRequest + example_data = get_short_pr_example_data() + + def test_no_extra_attributes(self): + """Verify that the short representation in the docs works.""" + # Let's just test an attribute + assert isinstance(self.instance.locked, bool) class TestPullReview(helper.UnitHelper): @@ -205,7 +220,7 @@ class TestPullReview(helper.UnitHelper): example_data = get_pullreview_example_data() def test_submit(self): - """Verify the request to submit a review""" + """Verify the request to submit a review.""" self.instance.submit("body", "APPROVED") self.post_called_with(