summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: cf7c4077948f3b95e325e2deccd036bbcea01f2a (plain)
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
40
41
42
sudo: false
dist: trusty
cache:
    directories:
        - $HOME/.cache/pip
        - tests/bot-ci
addons:
    apt:
        packages:
            - libssl1.0.0
            - zsh
            - tcsh
            - mksh
            - busybox
            # - rc
            - socat
            - bc
language: python
install: tests/install.sh
script: tests/test.sh
jobs:
    include:
        - stage: UCS2 python
          python: "2.7"
          env: >-
            USE_UCS2_PYTHON=1
            UCS2_PYTHON_VARIANT="2.7"
        - stage: Old Python
          python: "2.6"
        - python: "3.2"
        - stage: PyPy
          python: "pypy"
        - python: "pypy3"
        - stage: Latest Python
          python: "2.7"
        - python: "3.6"
        - stage: Intermediate versions
          python: "3.3"
        - python: "3.4"
        - python: "3.5"

# vim: et