mirror of https://github.com/interlegis/sapl.git
Marcio Mazza
9 years ago
committed by
Marcio Mazza
3 changed files with 9 additions and 31 deletions
@ -1,45 +1,23 @@ |
|||||
language: python |
language: python |
||||
sudo: required |
|
||||
|
|
||||
python: |
python: |
||||
- "3.4.3" |
- 3.4.3 |
||||
|
|
||||
|
|
||||
services: |
services: |
||||
- postgresql |
- postgresql |
||||
|
|
||||
addons: |
|
||||
postgresql: "9.3" |
|
||||
|
|
||||
install: |
install: |
||||
- sudo apt-get install git nginx python3-dev libpq-dev graphviz-dev graphviz pkg-config python-psycopg2 nodejs npm |
|
||||
- sudo ln -s /usr/bin/node |
|
||||
- pip install -r requirements/test-requirements.txt |
- pip install -r requirements/test-requirements.txt |
||||
- pip install --upgrade setuptools |
|
||||
|
|
||||
# Line 24 to 35 is a hack found in this link below |
|
||||
# It was used to fix an error in database building |
|
||||
# https://dockyard.com/blog/ruby/2013/03/29/running-postgresql-9-2-on-travis-ci |
|
||||
|
|
||||
before_script: |
before_script: |
||||
- sudo /etc/init.d/postgresql stop |
|
||||
- sudo cp /etc/postgresql/9.2/main/pg_hba.conf ./ |
|
||||
- sudo apt-get remove postgresql postgresql-9.2 -qq --purge |
|
||||
- source /etc/lsb-release |
|
||||
- echo "deb http://apt.postgresql.org/pub/repos/apt/ $DISTRIB_CODENAME-pgdg main" > pgdg.list |
|
||||
- sudo mv pgdg.list /etc/apt/sources.list.d/ |
|
||||
- wget --quiet -O - http://apt.postgresql.org/pub/repos/apt/ACCC4CF8.asc | sudo apt-key add - |
|
||||
- sudo apt-get update |
|
||||
- sudo apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" install postgresql-9.3 postgresql-contrib-9.3 -qq |
|
||||
- sudo /etc/init.d/postgresql stop |
|
||||
- sudo cp ./pg_hba.conf /etc/postgresql/9.3/main |
|
||||
- sudo /etc/init.d/postgresql start |
|
||||
- npm install -g bower |
- npm install -g bower |
||||
- cp .env_dev .env |
- cp sapl/.env_test sapl/.env |
||||
- sed -i -e 's/getpass.getuser()/"postgres"/g' sapl/settings.py |
- psql -c "CREATE USER sapl WITH PASSWORD 'sapl'" -U postgres; |
||||
- psql -c 'create database sapl;' -U postgres |
- psql -c "CREATE DATABASE sapl OWNER sapl;" -U postgres |
||||
|
|
||||
script: |
script: |
||||
- ./manage.py migrate |
- ./manage.py migrate |
||||
- ./manage.py bower install |
- ./manage.py bower install |
||||
- pip freeze |
- py.test |
||||
- ./test_and_check_qa.sh |
# - ./test_and_check_qa.sh |
Loading…
Reference in new issue