mirror of https://github.com/zulip/zulip.git
tools: Remove send-github-payloads.
This ancient tool predates our practice of collecting test fixtures for third-party integrations, which is a better general system for the problem this solved.
This commit is contained in:
parent
74dc3e9a3e
commit
2bb04fc720
|
@ -1,17 +0,0 @@
|
|||
#!/usr/bin/env python3
|
||||
import sys
|
||||
import os
|
||||
import json
|
||||
|
||||
sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'api'))
|
||||
import zulip
|
||||
|
||||
zulip_client = zulip.Client(site="http://localhost:9991", client="ZulipGithubPayloadSender/0.1")
|
||||
|
||||
payload_dir = "zerver/tests/fixtures/github"
|
||||
for filename in os.listdir(payload_dir):
|
||||
with open(os.path.join(payload_dir, filename)) as f:
|
||||
req = json.loads(f.read())
|
||||
req['api-key'] = zulip_client.api_key
|
||||
req['email'] = zulip_client.email
|
||||
zulip_client.do_api_query(req, zulip.API_VERSTRING + "external/github")
|
Loading…
Reference in New Issue