forked from AuthorizeNet/sample-code-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (26 loc) · 692 Bytes
/
.travis.yml
File metadata and controls
31 lines (26 loc) · 692 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
language: python
sudo: false
dist: trusty
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
- "pypy"
- "pypy3"
matrix:
fast_finish: true
allow_failures:
- python: "3.7-dev"
# 3.7-dev started crashing when building lxml although the neither the python version nor the lxml version seemed to change.
# Will have to investigate further.
- python: "pypy"
- python: "pypy3"
- python: "3.4"
# pypy and 3.4 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
install:
- pip install authorizenet
script:
python test-runner.py