An attempt at adding UDP support to aiosocks. Untested due to lack of server support.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

41 lines
762 B

  1. sudo: no
  2. language: python
  3. python:
  4. - 3.4
  5. - 3.5
  6. os:
  7. - linux
  8. cache:
  9. directories:
  10. - $HOME/.cache/pip
  11. before_cache:
  12. - rm -f $HOME/.cache/pip/log/debug.log
  13. install:
  14. - pip install --upgrade pip wheel
  15. - pip install --upgrade setuptools
  16. - pip install pip
  17. - pip install flake8
  18. - pip install pyflakes==1.1.0
  19. - pip install coverage
  20. - pip install pytest
  21. - pip install pytest-cov
  22. - pip install aiodns
  23. - pip install aiohttp
  24. - pip install coveralls
  25. script:
  26. - cd $TRAVIS_BUILD_DIR
  27. - flake8 aiosocks tests
  28. - python setup.py develop && py.test --cov=aiosocks tests
  29. - python setup.py check -rm
  30. - if python -c "import sys; sys.exit(sys.version_info < (3,5))"; then
  31. python setup.py check -s;
  32. fi
  33. after_success:
  34. coveralls