forked from CyberSource/cybersource-rest-samples-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (34 loc) · 741 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
38
39
language: python
sudo: false
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
- "pypy3"
env:
- PYTHONWARNINGS="ignore:Unverified HTTPS request"
matrix:
fast_finish: true
include:
- python: 3.7
dist: xenial
sudo: true
- python: 3.8
dist: xenial
sudo: true
allow_failures:
- python: "pypy"
- python: "pypy3"
# pypy will just crash due to an incompatibility with lxml.
# Newer versions of pypy seem to crash also, so we probably have to fix with a newer version of lxml
- python: "2.7"
- python: "3.4"
- python: "3.5"
install:
- pip install cybersource-rest-client-python
- pip install -e .
script:
- bash sample_code_runner.sh
- cat output.log