root/plugins/auth/Makefile @ 9f9d9e278c76a1ad53f5fea87ac35bb605d240f1

Revision 9f9d9e278c76a1ad53f5fea87ac35bb605d240f1, 1.0 KB (checked in by Loic Dachary <loic@…>, 2 years ago)

100% coverage on the auth.py plugin

  • Property mode set to 100644
Line 
1#
2# Copyright (C) 2011 Dachary <loic@dachary.org>
3#
4# This software's license gives you freedom; you can copy, convey,
5# propagate, redistribute and/or modify this program under the terms of
6# the GNU Affero General Public License (AGPL) as published by the Free
7# Software Foundation (FSF), either version 3 of the License, or (at your
8# option) any later version of the AGPL published by the FSF.
9#
10# This program is distributed in the hope that it will be useful, but
11# WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Affero
13# General Public License for more details.
14#
15# You should have received a copy of the GNU Affero General Public License
16# along with this program in a file in the toplevel directory called
17# "AGPLv3".  If not, see <http://www.gnu.org/licenses/>.
18#
19all:
20
21check:
22        python-coverage -e
23        PYTHONPATH=../.. python-coverage -x test_auth.py
24        python-coverage -m -a -r auth.py
25
26clean:
27        rm -fr .coverage _trial_temp*
28        rm -f *,cover
29        rm -f *.pyc
30
Note: See TracBrowser for help on using the browser.