diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4ffc8e18..3861d749 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -32,8 +32,6 @@ jobs: pip install hatch - name: Build package run: hatch build - - name: Test package - run: hatch run test - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads/2') diff --git a/NEWS b/NEWS index 0d86858b..ea77c412 100644 --- a/NEWS +++ b/NEWS @@ -9,7 +9,11 @@ Changes and improvements to testtools_, grouped by release. Improvements ------------ -* Add ``Nearly`` matcher for approximate numerical comparisons. (#222) +* Add ``Nearly`` matcher for approximate numerical comparisons. + (Jelmer Vernooij, #222) + +* Improve handling of sets in ``assertEquals``. + (Jelmer Vernooij, #108) Changes ------- @@ -17,6 +21,8 @@ Changes * Re-add accidentally removed methods on StreamToExtendedDecorator. (Jelmer Vernooij) + * Add typing. (Jelmer Vernooij, Stephen Finucane) + 2.8.0 ~~~~~