File: .travis.yml

package info (click to toggle)
python-xmltodict 0.12.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 160 kB
  • sloc: python: 1,134; makefile: 12; sh: 1
file content (26 lines) | stat: -rw-r--r-- 718 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
language: python

python:
  - "2.7"
  - "3.4"
  - "3.5"
  - "3.6"
  - "pypy"

matrix:
  include:
    - python: "3.7"
      dist: xenial
      sudo: required
    - name: "Jython"
      python: "pypy"
      env: JYTHON_VERSION="2.7.0"
      before_install:
        - export JYTHON_URL="http://search.maven.org/remotecontent?filepath=org/python/jython-installer/${JYTHON_VERSION}/jython-installer-${JYTHON_VERSION}.jar"
        - wget $JYTHON_URL -O jython_installer.jar
        - java -jar jython_installer.jar -s -d $HOME/jython
        - export PATH="$HOME/jython:$PATH"
        - $HOME/jython/bin/easy_install nose
      script: $HOME/jython/bin/nosetests

script: nosetests --with-coverage --cover-package=xmltodict