Project for the UPV to develop an app like BlaBlaCar but only for UPV people.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

travis working

+7 -1
+3
.gitignore
··· 55 55 # virtual environments 56 56 .env 57 57 58 + # Coverages 59 + .coverage 60 + 58 61 # Project specific 59 62 upvcarshare/public 60 63 upvcarshare/static/dist/css
+4 -1
.travis.yml
··· 13 13 install: 14 14 - pip install -r requirements/test.txt 15 15 16 + before_script: 17 + - cd upvcarshare 18 + 16 19 script: 17 - - coverage run runtests.py 20 + - coverage run manage.py test --settings config.settings.test 18 21 19 22 after_success: 20 23 - coveralls