#!/usr/bin/make -f

export http_proxy = http://127.0.1.1:9/
export https_proxy = ${http_proxy}

export PYBUILD_NAME = aiohttp_session
# These tests require Docker.
export PYBUILD_TEST_ARGS = \
	-k 'not test_memcached_storage and not test_redis_storage'

%:
	dh $@ --with python3,sphinxdoc --buildsystem=pybuild

execute_after_dh_auto_build:
	cd docs/ ; $(MAKE) html
