Fix tests and CI

This commit is contained in:
Skia 2016-11-08 19:07:25 +01:00
parent 321dead0de
commit e9c19438d4
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
test:
script:
- pip install -r requirements.txt
- python manage.py compilemessages
- python manage.py test

View File

@ -54,5 +54,5 @@ class ClubTest(TestCase):
self.client.login(username='rbatsbak', password='plop')
response = self.client.post(reverse("club:club_members", kwargs={"club_id":self.bdf.id}), {"user": self.skia.id, "role": 10})
self.assertTrue(response.status_code == 200)
self.assertTrue("<li>You do not have the permission to do that</li>" in str(response.content))
self.assertTrue("<li>Vous n&#39;avez pas la permission de faire cela</li>" in str(response.content))