~snappy-dev/snapcraft/0.4

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Michael Terry
  • Date: 2015-07-07 14:17:37 UTC
  • mfrom: (68.1.2 snapcraft)
  • Revision ID: michael.terry@canonical.com-20150707141737-rj8dllngs3ye360e
Merge debian packaging branch in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# -*- Mode:Makefile; indent-tabs-mode:t; tab-width:4 -*-
 
3
 
 
4
%:
 
5
        dh $@ --with python3 --buildsystem=pybuild
 
6
 
 
7
override_dh_auto_test:
 
8
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
 
9
        python3 setup.py test
 
10
endif
 
11