-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
32 lines (31 loc) · 894 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
jobs:
include:
- language: python
python:
- "3.6"
- "3.7"
- "3.8"
install:
- pip install -r back_end/requirements.txt
script:
- python back_end/manage.py makemigrations api
- python back_end/manage.py migrate
- pytest back_end/
- language: dart
dist: xenial
addons:
apt:
packages:
- lib32stdc++6
install:
- git clone https://github.com/flutter/flutter.git -b stable
- ./flutter/bin/flutter doctor
- gem install coveralls-lcov
script:
- cd mobile/
- ../flutter/bin/flutter test --coverage test/
after_success:
- coveralls-lcov ./coverage/lcov.info
cache:
directories:
- $HOME/.pub-cache