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.

added travis

+24
+20
.travis.yml
··· 1 + # Config file for automatic testing at travis-ci.org 2 + 3 + language: python 4 + 5 + python: 6 + - "3.5" 7 + 8 + before_install: 9 + - pip install --quiet coveralls 10 + - pip install codecov 11 + 12 + 13 + install: 14 + - pip install -r requirements/test.txt 15 + 16 + script: 17 + - coverage run runtests.py 18 + 19 + after_success: 20 + - coveralls
+4
requirements/test.txt
··· 1 + -r base.txt 2 + coverage==4.0.3 3 + django-test-plus==1.0.12 4 + factory_boy==2.7.0