Codebase list python-toml / 9962843f-0bac-49a3-ba04-79382c73b560/upstream .travis.yml
9962843f-0bac-49a3-ba04-79382c73b560/upstream

Tree @9962843f-0bac-49a3-ba04-79382c73b560/upstream (Download .tar.gz)

.travis.yml @9962843f-0bac-49a3-ba04-79382c73b560/upstreamraw · history · blame

language: python
cache: pip
python:
 - "2.7"
 - "3.4"
 - "3.5"
 - "3.6"
 - "3.7"
 - "3.8"
 - "3.9-dev"
 #- "pypy"

notifications:
  email: false
addons:
  apt:
    packages:
    - git
    - golang
before_install:
 - export GOPATH=~/go
 - go get github.com/BurntSushi/toml-test
 - git clone https://github.com/BurntSushi/toml-test
install:
 - pip install tox-travis
 - python setup.py install
 - chmod +x ./tests/*.sh
script:
 - ~/go/bin/toml-test ./tests/decoding_test.sh
 - tox
 - tox -e check
after_success:
 - tox -e codecov