mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-28 20:52:57 +08:00
opentracing-shim: add testbed for otshim (#727)
This commit ports the OpenTracing testbed[1] to check that the ot-shim is working as expected using different frameworks. Gevent doesn't support context vars yet[2], so those tests are not compatible with opentelemetry and were not ported. [1] https://github.com/opentracing/opentracing-python/tree/master/testbed [2] https://github.com/gevent/gevent/issues/1407 Co-authored-by: Mauricio Vásquez <mauricio@kinvolk.io> Co-authored-by: alrex <aboten@lightstep.com>
This commit is contained in:
@ -3,6 +3,17 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
function cov {
|
function cov {
|
||||||
|
if [ ${TOX_ENV_NAME:0:4} == "py34" ]
|
||||||
|
then
|
||||||
|
pytest \
|
||||||
|
--ignore-glob=*/setup.py \
|
||||||
|
--ignore-glob=ext/opentelemetry-ext-opentracing-shim/tests/testbed/* \
|
||||||
|
--cov ${1} \
|
||||||
|
--cov-append \
|
||||||
|
--cov-branch \
|
||||||
|
--cov-report='' \
|
||||||
|
${1}
|
||||||
|
else
|
||||||
pytest \
|
pytest \
|
||||||
--ignore-glob=*/setup.py \
|
--ignore-glob=*/setup.py \
|
||||||
--cov ${1} \
|
--cov ${1} \
|
||||||
@ -10,6 +21,7 @@ function cov {
|
|||||||
--cov-branch \
|
--cov-branch \
|
||||||
--cov-report='' \
|
--cov-report='' \
|
||||||
${1}
|
${1}
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
PYTHON_VERSION=$(python -c 'import sys; print(".".join(map(str, sys.version_info[:3])))')
|
PYTHON_VERSION=$(python -c 'import sys; print(".".join(map(str, sys.version_info[:3])))')
|
||||||
|
Reference in New Issue
Block a user