mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-15 01:00:42 +00:00
22 lines
322 B
Plaintext
22 lines
322 B
Plaintext
|
#!/usr/bin/make -f
|
||
|
# -*- makefile -*-
|
||
|
|
||
|
export DH_OPTIONS
|
||
|
|
||
|
%:
|
||
|
dh $@ --with python-virtualenv
|
||
|
|
||
|
override_dh_virtualenv:
|
||
|
dh_virtualenv
|
||
|
|
||
|
# do not call `make clean` as part of packaging
|
||
|
override_dh_auto_clean:
|
||
|
true
|
||
|
|
||
|
# do not call `make` as part of packaging
|
||
|
override_dh_auto_build:
|
||
|
true
|
||
|
|
||
|
override_dh_auto_test:
|
||
|
tox -e py27
|