Skip to content

Commit

Permalink
Test: Excluded testfixtures 8.3.0 to circumvent a new AssertionError
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Maier <andreas.r.maier@gmx.de>
  • Loading branch information
andy-maier committed Jun 10, 2024
1 parent d053749 commit eba56df
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ Released: not yet
macos-latest got upgraded from 12 to 14 and no longer supports Python 3.6
and 3.7.

* Test: Excluded testfixtures 8.3.0 to circumvent a new AssertionError that
is raised in test_recorder.py.

**Enhancements:**

* Development: Migrated from setup.py to pyproject.toml since that is the
Expand Down
7 changes: 6 additions & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ packaging>=21.3
# pytest-cov 4.0.0 depends on pytest>=4.6
pytest>=4.6.0,!=6.0,<8.0; python_version <= '3.9'
pytest>=6.2.5,<8.0; python_version >= '3.10'
testfixtures>=6.9.0
# TODO: testfixtures 8.3.0 introduced a new check that causes AssertionError to
# be raised in test_recorder.py.
# Issue https://github.com/simplistix/testfixtures/issues/200 describes
# the issue. To circumvent the issue, 8.3.0 is excluded for now.
# Find a permanent solution.
testfixtures>=6.9.0,!=8.3.0
# pylint>=2.15 requires colorama>=0.4.5
colorama>=0.4.5

Expand Down

0 comments on commit eba56df

Please sign in to comment.