mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 16:11:15 +00:00
14 lines
287 B
Makefile
Executable File
14 lines
287 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
override_dh_auto_clean:
|
|
dh_auto_clean
|
|
rm -f .coverage
|
|
rm -rf .tox
|
|
|
|
override_dh_auto_test:
|
|
flake8 -v --max-line-length=99 --extend-exclude=ubuntu-archive-assistant,ubuntu_archive_assistant
|
|
nosetests3 -v ubuntutools
|
|
|
|
%:
|
|
dh $@ --with python3 --buildsystem=pybuild
|