1
mirror of https://github.com/streamlink/streamlink synced 2024-10-26 16:22:14 +02:00
streamlink/.travis.yml
Simon Bernier St-Pierre 9963b8424c Create install script for pynsist (#27)
* create install script for pynsist

* add the concurrent package

* add singledispatch package

* remove call to deleted file

* add python 3 installer, generate config files
2016-10-07 16:28:10 -07:00

26 lines
393 B
YAML

language: python
sudo: false
matrix:
include:
- python: "2.6"
- python: "2.7"
- python: "3.3"
- python: "3.4"
- python: "3.5"
env: BUILD_DOCS=yes
before_install:
- pip install pytest pytest-cov codecov coverage
install:
- python setup.py install
script:
- python -m pytest tests/
- coverage run setup.py test
- bash script/pushdocs.sh
after_success:
- codecov