home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

3 rows where author_association = "MEMBER", issue = 255813811 and user = 1217238 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

user 1

  • shoyer · 3 ✖

issue 1

  • fix unintentional skipped tests · 3 ✖

author_association 1

  • MEMBER · 3 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
334315436 https://github.com/pydata/xarray/pull/1557#issuecomment-334315436 https://api.github.com/repos/pydata/xarray/issues/1557 MDEyOklzc3VlQ29tbWVudDMzNDMxNTQzNg== shoyer 1217238 2017-10-04T23:10:44Z 2017-10-04T23:10:44Z MEMBER

LGTM, thanks

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  fix unintentional skipped tests 255813811
333583361 https://github.com/pydata/xarray/pull/1557#issuecomment-333583361 https://api.github.com/repos/pydata/xarray/issues/1557 MDEyOklzc3VlQ29tbWVudDMzMzU4MzM2MQ== shoyer 1217238 2017-10-02T16:12:22Z 2017-10-02T16:12:31Z MEMBER

Another option is to give up on class decorators and only use a method decorator -- which we could even write ourselves if necessary. We have most of us backend specific logic in a few helper functions that we override for each subclass, so we only really need to decorate those, e.g.,

``` def conditional_skip(condition, reason=''): def wrapped(args, kwargs): if condition: raise unittest.SkipTest(reason) return wrapped(args, **kwargs) return wrapped

class NetCDFSubclassTest(UnitTest): ... @contextmanager @conditional_skip(...) def roundtrip(self): ... ```

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  fix unintentional skipped tests 255813811
327875587 https://github.com/pydata/xarray/pull/1557#issuecomment-327875587 https://api.github.com/repos/pydata/xarray/issues/1557 MDEyOklzc3VlQ29tbWVudDMyNzg3NTU4Nw== shoyer 1217238 2017-09-07T17:54:38Z 2017-09-07T17:54:38Z MEMBER

Maybe it's worth trying the work-around from https://github.com/pytest-dev/pytest/issues/568#issuecomment-216569420

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  fix unintentional skipped tests 255813811

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [issue_comments] (
   [html_url] TEXT,
   [issue_url] TEXT,
   [id] INTEGER PRIMARY KEY,
   [node_id] TEXT,
   [user] INTEGER REFERENCES [users]([id]),
   [created_at] TEXT,
   [updated_at] TEXT,
   [author_association] TEXT,
   [body] TEXT,
   [reactions] TEXT,
   [performed_via_github_app] TEXT,
   [issue] INTEGER REFERENCES [issues]([id])
);
CREATE INDEX [idx_issue_comments_issue]
    ON [issue_comments] ([issue]);
CREATE INDEX [idx_issue_comments_user]
    ON [issue_comments] ([user]);
Powered by Datasette · Queries took 2920.602ms · About: xarray-datasette