Skip to content

Commit

Permalink
starlette instrumentation (#777)
Browse files Browse the repository at this point in the history
adding an initial starlette instrumentation.

tox does exact match on fields delimited by a dash. Thus,
any instrumentation that includes "instrumentation" in the name
would collide with testing of the "opentelemetry-instrumentation"
package.

Renaming opentelemetry-instrumentation to opentelemetry-instrumentation-base to fix that.

Co-authored-by: Leighton Chen <lechen@microsoft.com>
Co-authored-by: alrex <aboten@lightstep.com>
  • Loading branch information
3 people authored Jun 15, 2020
1 parent 34f0e88 commit b2aa82c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/check_for_valid_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def is_valid_rst(path):
"""Checks if RST can be rendered on PyPI."""
with open(path) as readme_file:
markup = readme_file.read()
return readme_renderer.rst.render(markup) is not None
return readme_renderer.rst.render(markup, stream=sys.stderr) is not None


def parse_args():
Expand Down

0 comments on commit b2aa82c

Please sign in to comment.