Update README.rst
[PyCIM.git] / .travis.yml
blob9fce49cb89116e745a0ae68b89e7d1c7a3f4d9b2
1 language: python
2 python:
3     - "2.6"
4     - "2.7"
5     - "3.4"
6     - "3.5"
7     - "3.6"
8 install:
9     - "pip install -e .[dev,build]"
10     - pip install codecov pytest-cov
11 script:
12     - pytest --cov=PyCIM
13 after_success:
14     - codecov
15 deploy:
16   provider: pypi
17   user: osirius
18   password:
19     secure: U8GuICdcomZmj66lp9fIccBGJbYhU7VXgYSAlqozQn/e6+nQD2rXi0LfyAxx+kegH3d1S0h7bUVuwOIRtvpdMY0QzEpvPZ7YmvC6g5o1u66t0JDnWEBWuUcYRdIlu914vn7c+OEQoCZmA4fQABqlw3PfA9aqLaedOzAXiew8zSI=
20   distributions: "sdist bdist_wheel"
21   on:
22     tags: true
23     repo: rwl/PyCIM
24     branch: master
25     python: "2.7"