-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove assertNotContains
#1729
Remove assertNotContains
#1729
Conversation
Any idea why this was included initially? |
To confirm, the following code prints out False import unittest
print("assertNotContains" in dir(unittest.TestCase)) |
@andersk Thanks for the comment! |
If |
Alright I did some digging here. It looks like |
@charliermarsh Thanks for the investigation! Agreed. |
It's maybe worth auditing the methods here. I think we're missing |
@charliermarsh Agreed, filed #1736 |
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [ruff](https://github.com/charliermarsh/ruff) | `^0.0.214` -> `^0.0.215` | [![age](https://badges.renovateapi.com/packages/pypi/ruff/0.0.215/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/ruff/0.0.215/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/ruff/0.0.215/compatibility-slim/0.0.214)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/ruff/0.0.215/confidence-slim/0.0.214)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>charliermarsh/ruff</summary> ### [`v0.0.215`](https://github.com/charliermarsh/ruff/releases/tag/v0.0.215) [Compare Source](https://github.com/charliermarsh/ruff/compare/v0.0.214...v0.0.215) #### What's Changed - Automatically remove duplicate dictionary keys by [@​charliermarsh](https://github.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/1710](https://github.com/charliermarsh/ruff/pull/1710) - Add `ComparableExpr` hierarchy for comparing expressions by [@​charliermarsh](https://github.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/1721](https://github.com/charliermarsh/ruff/pull/1721) - Respect isort:skip action comment by [@​charliermarsh](https://github.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/1722](https://github.com/charliermarsh/ruff/pull/1722) - Treat failures to fix TypedDict conversions as debug logs by [@​charliermarsh](https://github.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/1723](https://github.com/charliermarsh/ruff/pull/1723) - Implement `--isolated` CLI flag by [@​charliermarsh](https://github.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/1727](https://github.com/charliermarsh/ruff/pull/1727) - Add more unittest assert methods to PT009 by [@​harupy](https://github.com/harupy) in [https://github.com/charliermarsh/ruff/pull/1730](https://github.com/charliermarsh/ruff/pull/1730) - Add `RUFF_FORMAT` environment variable support by [@​messense](https://github.com/messense) in [https://github.com/charliermarsh/ruff/pull/1731](https://github.com/charliermarsh/ruff/pull/1731) - Move RUFF_CACHE_DIR to Clap's env support by [@​charliermarsh](https://github.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/1733](https://github.com/charliermarsh/ruff/pull/1733) - buf-fix: flake8\_simplify SIM212 by [@​chammika-become](https://github.com/chammika-become) in [https://github.com/charliermarsh/ruff/pull/1732](https://github.com/charliermarsh/ruff/pull/1732) - Remove `assertNotContains` by [@​harupy](https://github.com/harupy) in [https://github.com/charliermarsh/ruff/pull/1729](https://github.com/charliermarsh/ruff/pull/1729) **Full Changelog**: astral-sh/ruff@v0.0.214...v0.0.215 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/ixm-one/pytest-cmake-presets). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC44NC4yIiwidXBkYXRlZEluVmVyIjoiMzQuODQuMiJ9--> Signed-off-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
unittest.TestCase
doens't have a method namedassertNotContains
.