forked from man-group/arctic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
33 lines (31 loc) · 819 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
33
dist: trusty
sudo: false
language: python
python:
- "2.7"
- "3.6"
services:
- mongodb
install:
- mongo --version
- pip install --upgrade pip
- pip install python-dateutil --upgrade
- pip install pytz --upgrade
- pip install tzlocal --upgrade
- pip install pymongo --upgrade
- pip install numpy --upgrade
- pip install pandas --upgrade
- pip install decorator --upgrade
- pip install enum34 --upgrade
- pip install lz4==0.8.2
- pip install mock --upgrade
- pip install mockextras
- pip install pytest --upgrade
- pip install pytest-cov --upgrade
- pip install pytest-server-fixtures --upgrade
- pip install pytest-timeout --upgrade
- pip install pytest-xdist --upgrade
- pip install setuptools-git --upgrade
script:
- pip freeze
- python setup.py test --pytest-args=-v