Skip to content

Commit

Permalink
Prepare for release of HDMF 3.11.0 (#989)
Browse files Browse the repository at this point in the history
  • Loading branch information
rly authored Oct 30, 2023
1 parent 7687a3f commit 318ccd1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ Prepare for release of HDMF [version]
(`pytest && python test_gallery.py`)
- [ ] Run PyNWB tests locally including gallery and validation tests, and inspect all warnings and outputs
(`cd pynwb; python test.py -v > out.txt 2>&1`)
- [ ] Run HDMF-Zarr tests locally including gallery and validation tests, and inspect all warnings and outputs
(`cd hdmf-zarr; pytest && python test_gallery.py`)
- [ ] Test docs locally and inspect all warnings and outputs `cd docs; make clean && make html`
- [ ] Push changes to this PR and make sure all PRs to be included in this release have been merged
- [ ] Check that the readthedocs build for this PR succeeds (build latest to pull the new branch, then activate and
Expand Down
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ Overall Health
.. image:: https://github.com/hdmf-dev/hdmf/actions/workflows/run_pynwb_tests.yml/badge.svg
:target: https://github.com/hdmf-dev/hdmf/actions/workflows/run_pynwb_tests.yml

.. image:: https://github.com/hdmf-dev/hdmf/actions/workflows/run_hdmf_zarr_tests.yml/badge.svg
:target: https://github.com/hdmf-dev/hdmf/actions/workflows/run_hdmf_zarr_tests.yml

.. image:: https://github.com/hdmf-dev/hdmf/actions/workflows/run_all_tests.yml/badge.svg
:target: https://github.com/hdmf-dev/hdmf/actions/workflows/run_all_tests.yml

Expand Down
6 changes: 3 additions & 3 deletions tests/unit/common/test_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -565,9 +565,9 @@ def test_getitem_row_slice_with_step(self):
rows = table[0:5:2]
self.assertIsInstance(rows, pd.DataFrame)
self.assertTupleEqual(rows.shape, (3, 3))
self.assertEqual(rows.iloc[2][0], 5)
self.assertEqual(rows.iloc[2][1], 50.0)
self.assertEqual(rows.iloc[2][2], 'lizard')
self.assertEqual(rows.iloc[2].iloc[0], 5)
self.assertEqual(rows.iloc[2].iloc[1], 50.0)
self.assertEqual(rows.iloc[2].iloc[2], 'lizard')

def test_getitem_invalid_keytype(self):
table = self.with_spec()
Expand Down

0 comments on commit 318ccd1

Please sign in to comment.