Skip to content

Commit

Permalink
Release 0.22.1 (#685)
Browse files Browse the repository at this point in the history
* update release notes

* fix codecoverage

* add module for testing coverage

* add a few more args for coverage
  • Loading branch information
mikemhenry committed Apr 18, 2023
1 parent 1642a45 commit bcbf0f6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
shell: bash -l {0}
run: |
# pytest -v --cov=openmmtools --cov-report=xml --color=yes openmmtools/tests/
nosetests openmmtools/tests --nocapture --verbosity=2 --with-timer --with-doctest -a '!slow'
nosetests openmmtools/tests --nocapture --cover-tests --with-coverage --cover-package=openmmtools --cover-xml --cover-xml-file=coverage.xml --verbosity=2 --with-timer --with-doctest -a '!slow'
- name: CodeCov
uses: codecov/codecov-action@v3
Expand Down
1 change: 1 addition & 0 deletions devtools/conda-envs/test_env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ dependencies:
- nose-timer
- pytest
- pytest-cov
- coverage

# docs
- numpydoc
Expand Down
12 changes: 10 additions & 2 deletions docs/releasehistory.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Release History
***************

0.22.1 - Bugfix release
=======================

Bugfixes
--------

- Fixed issue where the error message thrown from openMM changed, so we need a case insensitive check. This was already fixed in most of the code base but one spot was missed. (PR `#684 <https://github.com/choderalab/openmmtools/pull/684>`_)

0.22.0 - pymbar 4 support and gentle equilibration
==================================================

Expand All @@ -18,7 +26,7 @@ Bugfixes
- Support for newer NetCDF versions (1.6 branch) by not using zlib compression for varying length variables. (PR `#654 <https://github.com/choderalab/openmmtools/pull/654>`_).

0.21.5 - Bugfix release
======================
=======================

Changed behaviors
-----------------
Expand Down Expand Up @@ -131,7 +139,7 @@ Cleanup
- Remove leftover `six` imports and `xrange` (`#504 <https://github.com/choderalab/openmmtools/pull/504>`_)

0.20.1 - Bugfix release
========================================
=======================

Enhancements
------------
Expand Down

0 comments on commit bcbf0f6

Please sign in to comment.