mirror of
https://github.com/ammaraskar/pyCraft.git
synced 2024-11-16 07:15:24 +01:00
3f4571d9e9
(1) Add py35 job to Travis. (2) To address issue #57: run tests that connect to Mojang's auth server exactly once, during the py35 job. (3) Measure coverage exactly once, during the py35 job; always submit the result to coveralls. (4) Fix miscellaneous errors in generate_travis_yml.py.
22 lines
408 B
YAML
22 lines
408 B
YAML
language: python
|
|
python: 3.5
|
|
env:
|
|
- TOX_ENV=py27
|
|
- TOX_ENV=py33
|
|
- TOX_ENV=py34
|
|
- TOX_ENV=py35
|
|
- TOX_ENV=pypy
|
|
- TOX_ENV=flake8
|
|
- TOX_ENV=pylint-errors
|
|
- TOX_ENV=pylint-full
|
|
- TOX_ENV=verify-manifest
|
|
install:
|
|
- pip install tox
|
|
- pip install python-coveralls
|
|
script:
|
|
- tox -e $TOX_ENV
|
|
after_script:
|
|
- if [ "$TOX_ENV" = "py35" ]; then tox -e coveralls; fi
|
|
notifications:
|
|
email: false
|