-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
36 lines (32 loc) · 1.31 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
language: python
matrix:
include:
- python: 3.9
dist: focal
sudo: false
- python: 3.10
dist: focal
sudo: true
- python: 3.11
dist: focal
sudo: true
install:
- pip install --upgrade pip setuptools wheel
- pip install -e git+https://github.com/RWTH-EBC/richardsonpy.git#egg=richardsonpy
- pip install -e .
- pip install pytest-cov
- pip install coveralls
- pip install flake8
script:
- py.test
after_success:
- coveralls
deploy:
provider: pypi
user: "__token__"
password:
secure: "GuIbOaxb4Kf/1ku2yKWv89G60Kn4PbfvWMqQ6VtISr+sGi9XPRcV6Zl9ziwAytcF4ansJRqTKT07WhIqwb0A4FHT6ng9wVag+XBOGAEnSWW9YfhwhT0cnfKUKmRCaIqs94rcNu440pLbK+SdZculrU3e5n8T12kFMsYOOsvGUjflrkV3maMAvND5rJeqXP74nT2WrOm4S62cQdkOPKZlnYcal5jTlWIROpdZk+foUYgLlwPLYALBtezpxp6erOL5peQGKM0Xv/B1yPOmQhJd8BCMfyJbdGgge/236oyyfZJVRZqUa1h/ur6mJ+GYPzk+yf/lQO8etksb0PdjFKOlpY0lCEg/QAk5b4NQDhl5BpLLuJ4ORoxvr4U1ALDxKPCuayb0FVWRSIMt3HMuo0OOabw8joaDSvLO/SDKO8kM8PcRsiDS3XWNjDo1O+hdg3OizDHKkPx73PALD46gvcA1kgOg3lRWKBMhS0+Dg1AE+9M8rfxlp0FRok4cPXp++H1XHIOZ7kh3pP1I2mBt/gr9II6JDUliRI89jESqJP4IM3IjWpKcXSbzNeiKMNDme9j3ePKbGDqD1JRdcSuz6X0WfxCq3jB1RaI2k2YgzkgqGiFixBqDbzR7WH984umLTyTwuj2dH7XBhfaxqHYRf7pywPbNh4nAG89252xRFYM6BBo="
skip_existing: true
on:
tags: true
all_branches: true