1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#!/usr/bin/make -f
export PYBUILD_NAME = crossrefapi
export PYBUILD_TEST_ARGS = -k 'not test_integration and not test_work_agency_message and not test_work_agency_header'
# These values will intentionally fail with
# 'requests.exceptions.InvalidURL: Proxy URL had no scheme'
# in order not to make any network requests during tests
export http_proxy = 127.0.0.1
export https_proxy = 127.0.0.1
%:
dh $@ --buildsystem pybuild --with python3
execute_after_dh_auto_clean:
rm -rf crossrefapi.egg-info
|