forked from pyserial/pyserial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
40 lines (33 loc) · 849 Bytes
/
Copy path.travis.yml
File metadata and controls
40 lines (33 loc) · 849 Bytes
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
# Copyright Roger Meier <r.meier@siemens.com>
# SPDX-License-Identifier: BSD-3-Clause
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- pypy
- pypy3
script:
- python setup.py install
- python test/run_all_tests.py loop://
jobs:
include:
- {}
- os: windows
language: bash
install:
- choco install python3 --params "/InstallDir:C:\python3"
- export PATH=/c/python3:$PATH
- os: windows
language: bash
env: USE=CYGWIN
install:
- wget https://cygwin.com/setup-x86_64.exe
- chmod +x setup-x86_64.exe
- >
./setup-x86_64.exe -q -dnrN -l "C:\cygwin_setup"
-Os "http://cygwin.mirror.constant.com"
-P python38
- ln -vf /c/cygwin64/bin/python3.8.exe /usr/bin/python
- export PATH=/c/cygwin64/bin:$PATH