forked from tomerfiliba-org/rpyc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
37 lines (31 loc) · 881 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
language: python
dist: bionic
# See: https://docs.travis-ci.com/user/languages/python/
# and: https://docs.travis-ci.com/user/customizing-the-build/
matrix:
include:
- {python: "2.7"}
- {python: "3.6"}
- {python: "3.7"}
- {python: "3.8"}
- {python: "3.8-dev"}
- {python: "nightly"}
install:
- python setup.py install
# Install fails and historically has been skipped anyway
# - pip install gevent
# - pip install paramiko
before_script:
- "echo NoHostAuthenticationForLocalhost yes >> ~/.ssh/config"
- "echo StrictHostKeyChecking no >> ~/.ssh/config"
- "ssh-keygen -q -f ~/.ssh/id_rsa -N ''"
- "cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys"
- "uname -a"
- "hostname"
- "cd tests"
script:
- python -m unittest discover
notifications:
email:
on_success: change
on_failure: change