forked from BartMoyaers/BvhToDeepMimic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
37 lines (34 loc) · 1.71 KB
/
.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
language: python
matrix:
include:
- name: "Python 3.7.1 on Xenial Linux"
python: 3.7 # this works for Linux but is ignored on macOS or Windows
dist: xenial # required for Python >= 3.7
- name: "Python 3.6 on Linux"
python: 3.6 # this works for Linux but is ignored on macOS or Windows
# - name: "Python 3.7.3 on Windows"
# os: windows # Windows 10.0.17134 N/A Build 17134
# language: shell # 'language: python' is an error on Travis CI Windows
# before_install:
# - choco install python
# - python -m pip install --upgrade pip
# env: PATH=/c/Python37:/c/Python37/Scripts:$PATH
install:
- pip3 install pyquaternion
- pip3 install numpy
- pip3 install bvh
- pip3 install tqdm
- pip3 install codecov
- pip3 install coverage
script:
# - python -m unittest || python3 -m unittest
- coverage run -m unittest
- codecov
deploy:
provider: pypi
user: BartMoyaers
password:
secure: VH8t45RpBP+DmvxmtTsrzOD0KqAwuQWj9rmk0Z/zU9Ds28rdTzY6m5T+UTRvuCBriGJUmixEL49qRLshHXCIK02LiebL0KrvFTeqrDV0t5dCQF/7FW2Nb4svcI13VBEGTu4aW5WKG88OUzCYpNxcvLSTkukJdIVY5D8HCxAPBpHdv8DW2haEeP4Pyqmw+lpZ7F5BWhAgQH85vXerR31pkaxio5GsYWNvOorqN3rgxbhAw4qsdS7l6NHq/3/l7vrbBKmDH1UzXwGI3CtpbFwUa5q/Rao2hjgVzREt4RIrZLS9M+1Qe3qT3/3P522jZeU6sP59+lEP9qln9MuRbF7sZ7fd8gGZ3a21pWJOrCG+DFzOAxCRT+vCb7HRrFKg/MzHD8BtZZ1Cag+6txs7Rprb8F+wBwH+VYTF0bEHqsrlWWMUDZfx42XWE80ltXNFh4+Ei1ilkvGLIUrcQk8rX+KjEFeHQqtqe2fxb962SEkJ9flTSBXUZuRzzQjeQbNQcmQHSmzQT8lihnLYSMBAPVUHgF8Qw3vWL0x3cApgqY8GqEMB8DRYxMl9bF4afDO3/EvWxAb/FK8HGzmZY91nUpa7g90pdLyh29Ik2CF5IUo1K55dXlB15rX52DxG/kvt3H5MNUOmMDsMx3xisnX0Ss5XJD4MEUszgk/VWj2sL/ZI6kI=
skip_existing: true
on:
branch: master