mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-14 00:30:41 +00:00
22 lines
341 B
Makefile
Executable File
22 lines
341 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
export DH_OPTIONS
|
|
|
|
%:
|
|
dh $@ --with python-virtualenv
|
|
|
|
override_dh_virtualenv:
|
|
dh_virtualenv --python python2.7
|
|
|
|
# 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
|