issue_comments
6 rows where author_association = "MEMBER", issue = 249584098 and user = 4160723 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: reactions, created_at (date), updated_at (date)
issue 1
- Detailed report for testing.assert_equal and testing.assert_identical · 6 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
455467849 | https://github.com/pydata/xarray/pull/1507#issuecomment-455467849 | https://api.github.com/repos/pydata/xarray/issues/1507 | MDEyOklzc3VlQ29tbWVudDQ1NTQ2Nzg0OQ== | benbovy 4160723 | 2019-01-18T08:38:01Z | 2019-01-18T08:38:01Z | MEMBER | If everyone is happy with this I'm going to merge it. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Detailed report for testing.assert_equal and testing.assert_identical 249584098 | |
454753169 | https://github.com/pydata/xarray/pull/1507#issuecomment-454753169 | https://api.github.com/repos/pydata/xarray/issues/1507 | MDEyOklzc3VlQ29tbWVudDQ1NDc1MzE2OQ== | benbovy 4160723 | 2019-01-16T11:56:04Z | 2019-01-16T11:56:04Z | MEMBER |
Same opinion.
I'm just fixing |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Detailed report for testing.assert_equal and testing.assert_identical 249584098 | |
454505227 | https://github.com/pydata/xarray/pull/1507#issuecomment-454505227 | https://api.github.com/repos/pydata/xarray/issues/1507 | MDEyOklzc3VlQ29tbWVudDQ1NDUwNTIyNw== | benbovy 4160723 | 2019-01-15T18:46:36Z | 2019-01-15T18:46:36Z | MEMBER |
Yes I could use those examples for the tests. I think it might be good to write shallow tests at least for |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Detailed report for testing.assert_equal and testing.assert_identical 249584098 | |
454504146 | https://github.com/pydata/xarray/pull/1507#issuecomment-454504146 | https://api.github.com/repos/pydata/xarray/issues/1507 | MDEyOklzc3VlQ29tbWVudDQ1NDUwNDE0Ng== | benbovy 4160723 | 2019-01-15T18:43:12Z | 2019-01-15T18:43:12Z | MEMBER | I'm wondering which is the best among the options below: A.
B.
C.
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Detailed report for testing.assert_equal and testing.assert_identical 249584098 | |
454496268 | https://github.com/pydata/xarray/pull/1507#issuecomment-454496268 | https://api.github.com/repos/pydata/xarray/issues/1507 | MDEyOklzc3VlQ29tbWVudDQ1NDQ5NjI2OA== | benbovy 4160723 | 2019-01-15T18:19:44Z | 2019-01-15T18:19:44Z | MEMBER | Thanks for reminding me this PR @max-sixty ! It deserves more than no commits since 1.5 years! The assertion error messages now look like pytest's failure reports (see As examples: ```python ds_a = xr.Dataset(data_vars={'var1': (('x', 'y'), [[1, 2, 3], [4, 5, 7]]), 'var2': ('x', [3, 4])}, coords={'x': ['a', 'b'], 'y': [1, 2, 3]}, attrs={'units': 'm', 'description': 'desc'}) ds_b = xr.Dataset(data_vars={'var1': ('x', [1, 2])},
coords={'x': ('x', ['a', 'c'], {'source': 0}), 'label': ('x', [1, 2])},
attrs={'units': 'kg'})
```python da_a = xr.DataArray([[1, 2, 3], [4, 5, 7]], dims=('x', 'y'), coords={'x': ['a', 'b'], 'y': [1, 2, 3]}, attrs={'units': 'm', 'description': 'desc'}) da_b = xr.DataArray([1, 2],
dims='x',
coords={'x': ['a', 'c'], 'label': ('x', [1, 2])},
attrs={'units': 'kg'})
Those examples are probably not the most readable ones but it's for a full showcase. A downside of this approach (i.e., report the exact differing) is that when |
{ "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Detailed report for testing.assert_equal and testing.assert_identical 249584098 | |
321933573 | https://github.com/pydata/xarray/pull/1507#issuecomment-321933573 | https://api.github.com/repos/pydata/xarray/issues/1507 | MDEyOklzc3VlQ29tbWVudDMyMTkzMzU3Mw== | benbovy 4160723 | 2017-08-11T22:36:38Z | 2017-08-11T22:36:38Z | MEMBER | Indeed, exact differing variables/attributes would be much better here. I'll look into this next week. pytest's failure reports and reports of |
{ "total_count": 2, "+1": 2, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Detailed report for testing.assert_equal and testing.assert_identical 249584098 |
Advanced export
JSON shape: default, array, newline-delimited, object
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]);
user 1