Skip to content

Commit f033b70

Browse files
committed
fix test
1 parent 68d1c41 commit f033b70

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,7 @@ mypy:
1919
fmt:
2020
hatch run black $(DIRS)
2121
hatch run isort $(DIRS)
22+
23+
.PHONY: test
24+
test:
25+
hatch run test

tests/test_log.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,6 @@ def test_service_context_envvar(capsys, mock_logger_env):
9292
except ZeroDivisionError:
9393
logger.exception("oh noes")
9494

95-
breakpoint()
96-
9795
msg = json.loads(capsys.readouterr().out)
9896

9997
assert msg["serviceContext"] == {

0 commit comments

Comments
 (0)