Christoph Blessing
Christoph Blessing
#### Current Behavior The container module shows "Systemd" instead of "Docker" if inside a container created from the ubuntu:20.04 Docker image. #### Expected Behavior It should show "Docker" if inside...
## Type of Changes | | Type | | --- | ---------------------- | | ✓ | :bug: Bug fix | ## Description This PR adds a check to the see...
Currently the `AccessError` catched [here](https://github.com/datajoint/datajoint-python/blob/d9847f0814e9930a7c85616b21e673072847d851/datajoint/table.py#L68) is silent meaning the user has no indication it was raised in the first place. This silent error can cause other errors down the line...
- Extend json report test - Add branch details to json report Fixes: #1425
## Bug Report ### Description ```python @schema class Table(dj.Manual): definition = """ t = CURRENT_TIMESTAMP : timestamp """ @schema # pymysql.err.OperationalError: (1067, "Invalid default value for 't'") class Copy(dj.Manual): definition...
## Bug Report ### Description Sometimes the `.parts` property on tables returns an empty list even if the table has parts. ```python @schema class MyTable(dj.Manual): definition = """ a: int...