forked from Azure/azure-data-lake-store-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
44 lines (34 loc) · 779 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
34
35
36
37
38
39
40
41
42
43
44
sudo: false
language: python
cache: pip
matrix:
include:
- python: 2.7
- python: 3.3
- python: 3.4
- python: 3.5
- python: 3.6
install:
# Install dependencies
- pip install -U setuptools pip
- pip install -r dev_requirements.txt
- python setup.py develop
# Install coveralls and pytest coverage
- pip install coveralls pytest-cov
env:
script:
- py.test --maxfail=100 -vvv --doctest-modules --cov=azure/datalake/store --pyargs azure.datalake.store tests
after_success:
- coveralls
notifications:
email: false
deploy:
provider: pypi
user: begoldsm
skip_upload_docs: true
# password: use $PYPI_PASSWORD
distributions: "sdist bdist_wheel"
on:
tags: true
python: '3.6'
repo: Azure/azure-data-lake-store-python