home / github / issue_comments

Menu
  • GraphQL API

issue_comments: 609467876

This data as json

html_url issue_url id node_id user created_at updated_at author_association body reactions issue performed_via_github_app
https://github.com/simonw/datasette/issues/689#issuecomment-609467876 https://api.github.com/repos/simonw/datasette/issues/689 609467876 MDEyOklzc3VlQ29tbWVudDYwOTQ2Nzg3Ng== 9599 2020-04-05T19:18:36Z 2020-04-05T19:18:36Z OWNER Just need the one checking script to run with bisect this time: `check_templates_considered.py` ```python import asyncio import pathlib from datasette.app import Datasette import httpx async def run_check(): ds = Datasette([]) async with httpx.AsyncClient(app=ds.app()) as client: response = await client.get("http://localhost/") assert 200 == response.status_code assert "Templates considered" in response.text if __name__ == "__main__": loop = asyncio.get_event_loop() loop.run_until_complete(run_check()) ``` {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} 573583971  
Powered by Datasette · Queries took 0.98ms