File: .travis.yml

package info (click to toggle)
emacs-jedi 0.2.8-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 356 kB
  • sloc: lisp: 1,425; python: 536; makefile: 286; sh: 8
file content (39 lines) | stat: -rw-r--r-- 1,007 bytes parent folder | download
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
dist: xenial
sudo: false
language: python
git:
  depth: 3
python:
  # First python version in this list is the default for matrix.include
  # - "3.7"
  - "3.6"
  - "3.5"
  - "3.4"
  - "2.7"
env:
  matrix:
    - EVM_EMACS=emacs-26.3-travis-linux-xenial
  global:
  # Turn on --use-mirrors option everywhere (even in tox):
  - PIP_USE_MIRRORS=t
matrix:
  include:
    - env: EVM_EMACS=emacs-24.4-travis
    - env: EVM_EMACS=emacs-24.5-travis
    - env: EVM_EMACS=emacs-25.1-travis
    - env: EVM_EMACS=emacs-25.2-travis
    - env: EVM_EMACS=emacs-25.3-travis
    - env: EVM_EMACS=emacs-26.1-travis-linux-xenial
    - env: EVM_EMACS=emacs-26.2-travis-linux-xenial
    - env: EVM_EMACS=emacs-git-snapshot-travis-linux-xenial

before_install:
  - pip install -q virtualenv tox tox-travis
  - curl -fsSkL https://gist.github.com/rejeep/ebcd57c3af83b049833b/raw > x.sh && source ./x.sh
  - evm install $EVM_EMACS --use --skip
  - evm list
  - emacs --version
  - cask
  - make before-test
script:
  make travis-ci