Skip to content

Commit

Permalink
fix: tracer testing, black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
therightstuff committed Oct 12, 2023
1 parent 260b5b7 commit 9226509
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/push-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ jobs:
# The task outputs the list of tasks on stdout, each entry separated by a `\n` character.
# The task output is piped into the `jq` command, that formats it as a JSON list, as the
# we need a JSON datastructure later on for dynamic matrixes.
echo "integration_tests=$(nox -e list_integration_tests_ci | jq -Rnc '[inputs]')" >> $GITHUB_OUTPUT
echo "integration_tests=$( \
python3 -m nox -e list_integration_tests_ci \
| jq -Rnc '[inputs]' \
)" >> $GITHUB_OUTPUT
version-testing:
needs: [list-instrumentations]
Expand Down
5 changes: 1 addition & 4 deletions src/test/integration/fastapi/fastapi_external_apis/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,4 @@ def get_big_response():

@app.get("/little-response")
def get_little_response(request: Request):
return {
"url": str(request.url),
"data": "a" * 100
}
return {"url": str(request.url), "data": "a" * 100}

0 comments on commit 9226509

Please sign in to comment.