blob: 5d52997ff4d69dadc4c9f7ad22a11cb67a190910 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
language: python
python:
- "3.5"
before_install:
- sudo apt-get update -qq
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
# command to install dependencies
install:
- pip install -r requirements.txt
# command to run tests and coverage
script:
- python manage.py makemigrations
- python manage.py migrate
- python manage.py test
|