You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR is against the 1.20 branch, since it and below are the ones that
are failing or timing out on the Sanic framework test.
Sanic test is consistently timing out or failing on <=1.20. Skipping for
now. I tried to add a time based skip, however I ran into some issues
getting the time in an easily comparable format.
## Checklist
- [x] Change(s) are motivated and described in the PR description.
- [x] Testing strategy is described if automated tests are not included
in the PR.
- [x] Risk is outlined (performance impact, potential for breakage,
maintainability, etc).
- [x] Change is maintainable (easy to change, telemetry, documentation).
- [x] [Library release note
guidelines](https://ddtrace.readthedocs.io/en/stable/releasenotes.html)
are followed. If no release note is required, add label
`changelog/no-changelog`.
- [x] Documentation is included (in-code, generated user docs, [public
corp docs](https://github.com/DataDog/documentation/)).
- [x] Backport labels are set (if
[applicable](https://ddtrace.readthedocs.io/en/latest/contributing.html#backporting))
## Reviewer Checklist
- [x] Title is accurate.
- [x] No unnecessary changes are introduced.
- [x] Description motivates each change.
- [x] Avoids breaking
[API](https://ddtrace.readthedocs.io/en/stable/versioning.html#interfaces)
changes unless absolutely necessary.
- [x] Testing strategy adequately addresses listed risk(s).
- [x] Change is maintainable (easy to change, telemetry, documentation).
- [x] Release note makes sense to a user of the library.
- [x] Reviewer has explicitly acknowledged and discussed the performance
implications of this PR as reported in the benchmarks PR comment.
- [x] Backport labels are set in a manner that is consistent with the
[release branch maintenance
policy](https://ddtrace.readthedocs.io/en/latest/contributing.html#backporting)
- [x] If this PR touches code that signs or publishes builds or
packages, or handles credentials of any kind, I've requested a review
from `@DataDog/security-design-and-guidance`.
- [x] This PR doesn't touch any of that.
Copy file name to clipboardExpand all lines: .github/workflows/test_frameworks.yml
+34-34Lines changed: 34 additions & 34 deletions
Original file line number
Diff line number
Diff line change
@@ -75,40 +75,40 @@ jobs:
75
75
# log output and it contains phony error messages.
76
76
run: PYTHONPATH=../ddtrace/tests/debugging/exploration/ ddtrace-run pytest test --continue-on-collection-errors -v -k 'not test_simple'
77
77
78
-
sanic-testsuite-22_12:
79
-
runs-on: ubuntu-20.04
80
-
needs: needs-run
81
-
env:
82
-
# Regression test for DataDog/dd-trace-py/issues/5722
83
-
DD_UNLOAD_MODULES_FROM_SITECUSTOMIZE: true
84
-
CMAKE_BUILD_PARALLEL_LEVEL: 12
85
-
defaults:
86
-
run:
87
-
working-directory: sanic
88
-
steps:
89
-
- uses: actions/checkout@v3
90
-
if: needs.needs-run.outputs.outcome == 'success'
91
-
with:
92
-
path: ddtrace
93
-
- uses: actions/checkout@v3
94
-
if: needs.needs-run.outputs.outcome == 'success'
95
-
with:
96
-
repository: sanic-org/sanic
97
-
ref: v22.12.0
98
-
path: sanic
99
-
- uses: actions/setup-python@v4
100
-
if: needs.needs-run.outputs.outcome == 'success'
101
-
with:
102
-
python-version: "3.11"
103
-
- name: Install sanic and dependencies required to run tests
104
-
if: needs.needs-run.outputs.outcome == 'success'
105
-
run: pip3 install '.[test]' aioquic
106
-
- name: Install ddtrace
107
-
if: needs.needs-run.outputs.outcome == 'success'
108
-
run: pip3 install ../ddtrace
109
-
- name: Run tests
110
-
if: needs.needs-run.outputs.outcome == 'success'
111
-
run: ddtrace-run pytest -k "not test_add_signal and not test_ode_removes and not test_skip_touchup and not test_dispatch_signal_triggers and not test_keep_alive_connection_context and not test_redirect_with_params"
78
+
# sanic-testsuite-22_12:
79
+
# runs-on: ubuntu-20.04
80
+
# needs: needs-run
81
+
# env:
82
+
# # Regression test for DataDog/dd-trace-py/issues/5722
# run: ddtrace-run pytest -k "not test_add_signal and not test_ode_removes and not test_skip_touchup and not test_dispatch_signal_triggers and not test_keep_alive_connection_context and not test_redirect_with_params"
0 commit comments