File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
15
([ #4444 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4444 ) )
16
16
- opentelemetry-exporter-opencensus: better dependency version range for Python 3.13
17
17
([ #4444 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4444 ) )
18
+ - Updated ` tracecontext-integration-test ` gitref to ` d782773b2cf2fa4afd6a80a93b289d8a74ca894d `
19
+ ([ #4448 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4448 ) )
18
20
19
21
## Version 1.30.0/0.51b0 (2025-02-03)
20
22
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
set -e
3
3
# hard-coding the git tag to ensure stable builds.
4
- TRACECONTEXT_GIT_TAG=" 98f210efd89c63593dce90e2bae0a1bdcb986f51 "
4
+ TRACECONTEXT_GIT_TAG=" d782773b2cf2fa4afd6a80a93b289d8a74ca894d "
5
5
# clone w3c tracecontext tests
6
6
mkdir -p target
7
7
rm -rf ./target/trace-context
@@ -24,4 +24,11 @@ onshutdown()
24
24
}
25
25
trap onshutdown EXIT
26
26
cd ./target/trace-context/test
27
- python test.py http://127.0.0.1:5000/verify-tracecontext
27
+
28
+ # The disabled test is not compatible with an optional part of the W3C
29
+ # spec that we have implemented (dropping duplicated keys from tracestate).
30
+ # W3C are planning to include flags for optional features in the test suite.
31
+ # https://github.com/w3c/trace-context/issues/529
32
+ # FIXME: update test to use flags for optional features when available.
33
+ export SERVICE_ENDPOINT=http://127.0.0.1:5000/verify-tracecontext
34
+ pytest test.py -k " not test_tracestate_duplicated_keys"
Original file line number Diff line number Diff line change @@ -271,6 +271,7 @@ basepython: python3
271
271
deps =
272
272
# needed for tracecontext
273
273
aiohttp~=3.6
274
+ pytest ==7.4.4
274
275
# needed for example trace integration
275
276
flask~=2.3
276
277
requests~=2.7
You can’t perform that action at this time.
0 commit comments