1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- language: python
- sudo: false
- cache: pip
- python:
- - 2.7
- - 3.4
- - 3.5
- - 3.6
- - 3.6-dev
- - pypy3.5
- env:
- - PYTHONHASHSEED=random
- TEST_REQUIRE="gevent greenlet geventhttpclient fastimport"
- matrix:
- include:
- - python: pypy
- env: TEST_REQUIRE=fastimport
- - python: 3.7
- env: TEST_REQUIRE=fastimport
- dist: xenial
- sudo: true
-
-
-
-
-
- install:
- - travis_retry pip install -U pip coverage codecov flake8 $TEST_REQUIRE
- script:
-
- - python -m coverage run -p -m unittest dulwich.tests.test_suite
-
- - python setup.py build_ext -i
- - python -m coverage run -p -m unittest dulwich.tests.test_suite
-
- - make style
- after_success:
- - python -m coverage combine
- - codecov
|