Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# .git-blame-ignore-revs
# Reformatted repo with ruff
94f5e443bfa80e576ded32585f0058d09a6a7fbc
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ ipython_config.py
# VSCode
.vscode/

# JetBrains PyCharm
.idea/

# pyenv
.python-version

Expand Down
4 changes: 1 addition & 3 deletions cpplint_unittest.py
Original file line number Diff line number Diff line change
Expand Up @@ -7181,10 +7181,8 @@ def run_around_tests(pytestconfig: pytest.Config):
# obviously we're not going to see all the error categories. So we
# only run VerifyAllCategoriesAreSeen() when we don't filter for
# specific tests.
assert pytestconfig.getoption("-k", default=None) in [None, ""]
if pytestconfig.getoption("-k", default=None) in [None, ""]:
if pytestconfig.getoption("-k", default=None) in {None, ""}:
ErrorCollector(None).VerifyAllCategoriesAreSeen()
print("IIIIIIIIII saw the TV glow")


if __name__ == "__main__":
Expand Down