diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 02:04:06 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 02:04:06 +0000 |
commit | a8637fe80c24fb04bf6cc8ae8459877535f1341b (patch) | |
tree | 5d263b4543e10940f5e9a79a8fe981c5a3414bd7 /.travis.yml | |
parent | Initial commit. (diff) | |
download | powerline-a8637fe80c24fb04bf6cc8ae8459877535f1341b.tar.xz powerline-a8637fe80c24fb04bf6cc8ae8459877535f1341b.zip |
Adding upstream version 2.7.upstream/2.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | .travis.yml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..cf7c407 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,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 |