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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ exclude: "dev/dags/dbt/simple/dbt_packages/.*"

ci:
autofix_commit_msg: 🎨 [pre-commit.ci] Auto format from pre-commit.com hooks
autoupdate_commit_msg: ⬆ [pre-commit.ci] pre-commit autoupdate
autoupdate_schedule: quarterly
skip:
- mypy # build of https://github.com/pre-commit/mirrors-mypy:types-PyYAML,types-attrs,attrs,types-requests,
Comment thread
tatiana marked this conversation as resolved.
#types-python-dateutil,apache-airflow@v1.5.0 for python@python3 exceeds tier max size 250MiB: 262.6MiB
2 changes: 1 addition & 1 deletion tests/test_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def test_rich_logging(monkeypatch, caplog):

def test_rich_logging_none_message(monkeypatch, caplog):
"""CosmosRichLogger should not crash when record.msg is None."""
monkeypatch.setattr(cosmos.log, "rich_logging", True)
monkeypatch.setattr("cosmos.settings.rich_logging", True)
Comment thread
pankajkoti marked this conversation as resolved.
logger = get_logger("test-none-msg")
with caplog.at_level("INFO"):
logger.info(None)
Expand Down
Loading