Skip to content

Commit

Permalink
updates .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
LGD-Fr committed Aug 26, 2015
1 parent 3b330b7 commit 202623d
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 13 deletions.
14 changes: 7 additions & 7 deletions .travis.yml
Expand Up @@ -6,15 +6,15 @@ env:
- DJANGO=1.7
- DJANGO=1.8
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install -r requirements.txt --use-mirrors
- pip install pep8 --use-mirrors
- pip install https://github.com/dcramer/pyflakes/tarball/master
- pip install coveralls
- pip install -q -e . --use-mirrors
- pip install pip -U
- pip install -q Django==$DJANGO
- pip install pep8 -U
- pip install pyflakes -U
- pip install coveralls -U
- pip install -q -e .
before_script:
- "pep8 --exclude=migrations paiji2_infoconcert"
- pyflakes -x W paiji2_infoconcert
- pyflakes paiji2_infoconcert
script:
- coverage run --source=paiji2_infoconcert manage.py test
- python setup.py test
Expand Down
2 changes: 1 addition & 1 deletion paiji2_infoconcert/admin.py
@@ -1,3 +1,3 @@
from django.contrib import admin
# from django.contrib import admin

# Register your models here.
2 changes: 1 addition & 1 deletion paiji2_infoconcert/models.py
@@ -1,3 +1,3 @@
from django.db import models
# from django.db import models

# Create your models here.
2 changes: 1 addition & 1 deletion paiji2_infoconcert/modular.py
@@ -1,4 +1,4 @@
from django.conf.urls import url, include
# from django.conf.urls import url, include

from modular_blocks import ModuleApp, TemplateTagBlock, modules

Expand Down
2 changes: 1 addition & 1 deletion paiji2_infoconcert/tests.py
@@ -1,3 +1,3 @@
from django.test import TestCase
# from django.test import TestCase

# Create your tests here.
2 changes: 1 addition & 1 deletion paiji2_infoconcert/views.py
@@ -1,3 +1,3 @@
from django.shortcuts import render
# from django.shortcuts import render

# Create your views here.
1 change: 0 additions & 1 deletion requirements.txt

This file was deleted.

4 changes: 4 additions & 0 deletions setup.py
Expand Up @@ -34,4 +34,8 @@
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
install_requires=[
'python-dateutil >= 2.2',
'beautifulsoup4 >= 4',
],
)

0 comments on commit 202623d

Please sign in to comment.