forked from Azure/azure-data-lake-store-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
42 lines (32 loc) · 796 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
sudo: false
language: python
cache: pip
matrix:
include:
- python: 2.7
- python: 3.6
- python: 3.7
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: akharit-ms
skip_upload_docs: true
# password: use $PYPI_PASSWORD
distributions: "bdist_wheel sdist" # Parameter order for distributions is important.
on:
tags: true
python: '3.7'
repo: Azure/azure-data-lake-store-python