| 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 | # |
|---|
| 19 | all: |
|---|
| 20 | |
|---|
| 21 | check: |
|---|
| 22 | python-coverage -e |
|---|
| 23 | PYTHONPATH=../.. python-coverage -x test_auth.py |
|---|
| 24 | python-coverage -m -a -r auth.py |
|---|
| 25 | |
|---|
| 26 | clean: |
|---|
| 27 | rm -fr .coverage _trial_temp* |
|---|
| 28 | rm -f *,cover |
|---|
| 29 | rm -f *.pyc |
|---|
| 30 | |
|---|