1
0
Fork 0

Add travis support

merge-requests/266/head
Nikos Roussos 2016-09-22 18:12:30 +03:00
parent c301a9f098
commit 23628ef2ee
No known key found for this signature in database
GPG Key ID: BADFF1767BA7C8E1
5 changed files with 14 additions and 3 deletions

2
.jshintignore 100644
View File

@ -0,0 +1,2 @@
db/static/js/lib/
staticfiles/

9
.travis.yml 100644
View File

@ -0,0 +1,9 @@
language: python
python:
- "2.7"
install:
- pip install flake8
- npm install -g jshint
script:
- flake8 .
- jshint .

View File

@ -1,4 +1,4 @@
from base import *
from base import * # flake8: noqa
ENVIRONMENT = 'dev'

View File

@ -1,5 +1,5 @@
import os
from base import *
from base import * # flake8: noqa
ENVIRONMENT = 'production'

View File

@ -1,5 +1,5 @@
import os
from base import *
from base import * # flake8: noqa
ENVIRONMENT = 'stage'