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.
 
 

40 lines
761 B

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