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 @@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717  ([ #4444  ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4444 ) )
1818-  opentelemetry-exporter-opencensus: better dependency version range for Python 3.13
1919  ([ #4444  ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4444 ) )
20+ -  Updated ` tracecontext-integration-test `  gitref to ` d782773b2cf2fa4afd6a80a93b289d8a74ca894d ` 
21+   ([ #4448  ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4448 ) )
2022
2123## Version 1.30.0/0.51b0 (2025-02-03)  
2224
Original file line number Diff line number Diff line change 11#! /bin/sh
22set  -e 
33#  hard-coding the git tag to ensure stable builds.
4- TRACECONTEXT_GIT_TAG=" 98f210efd89c63593dce90e2bae0a1bdcb986f51 " 
4+ TRACECONTEXT_GIT_TAG=" d782773b2cf2fa4afd6a80a93b289d8a74ca894d " 
55#  clone w3c tracecontext tests
66mkdir -p target
77rm -rf ./target/trace-context
@@ -24,4 +24,11 @@ onshutdown()
2424}
2525trap  onshutdown EXIT
2626cd  ./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
271271deps  =
272272  #  needed for tracecontext
273273  aiohttp~=3.6
274+   pytest ==7.4.4
274275  #  needed for example trace integration
275276  flask~=2.3
276277  requests~=2.7
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments