mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
472 B
24 lines
472 B
language: python
|
|
sudo: true
|
|
|
|
python:
|
|
- "3.4.3"
|
|
|
|
services:
|
|
- postgresql
|
|
|
|
addons:
|
|
postgresql: "9.3.12"
|
|
|
|
install:
|
|
- sudo apt-get install git nginx python3-dev libpq-dev graphviz-dev graphviz postgresql-contrib pkg-config python-psycopg2 nodejs npm
|
|
- sudo ln -s /usr/bin/node
|
|
- npm install -g bower
|
|
- pip install -r requirements/test-requirements.txt
|
|
|
|
before_script:
|
|
- cp .env_dev .env
|
|
- bower install -f
|
|
- manage.py migrate
|
|
|
|
script: ./test_and_check_qa.sh
|