1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#!/usr/bin/make -f
export PYBUILD_NAME=aws-xray-sdk
export PYBUILD_TEST_ARGS_python2=--ignore tests/test_async_local_storage.py --ignore tests/test_async_recorder.py --ignore tests/ext/aiobotocore/ --ignore tests/ext/aiohttp/ \
--ignore tests/ext/botocore/test_botocore.py \
--ignore tests/ext/requests/test_requests.py \
-k-XRayTestCase
export PYBUILD_TEST_ARGS_python3=--ignore tests/test_async_local_storage.py \
--ignore tests/test_async_recorder.py \
--ignore tests/ext/aiobotocore/test_aiobotocore.py \
--ignore tests/ext/aiohttp/test_aiohttp.py \
--ignore tests/ext/botocore/test_botocore.py \
--ignore tests/ext/requests/test_requests.py \
-k-XRayTestCase
%:
dh $@ --with python2,python3 --buildsystem=pybuild
|