Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Add a comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
clokep committed Jul 20, 2022
1 parent 9f1dfa5 commit edab4ec
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/logging/test_opentracing.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@


class LogContextScopeManagerTestCase(TestCase):
"""
Test logging contexts and active opentracing spans.
There's casts throughout this from generic opentracing objects (e.g.
opentracing.Span) to the ones specific to Jaeger since they have additional
properties that these tests depend on. This is safe since the only supported
opentracing backend is Jaeger.
"""
if LogContextScopeManager is None:
skip = "Requires opentracing" # type: ignore[unreachable]
if jaeger_client is None:
Expand Down

0 comments on commit edab4ec

Please sign in to comment.