2
0

tox.ini 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. [tox]
  2. skipsdist = True
  3. usedevelop = True
  4. envlist = py{34,35,36}-dj{111,20}-{sqlite,postgres,mysql,mssql}-{elasticsearch5,elasticsearch2,noelasticsearch},
  5. [flake8]
  6. # D100: Missing docstring in public module
  7. # D101: Missing docstring in public class
  8. # D102: Missing docstring in public method
  9. # D103: Missing docstring in public function
  10. # D105: Missing docstring in magic method
  11. # D200: One-line docstring should fit on one line with quotes
  12. # D202: No blank lines allowed after function docstring
  13. # D204: 1 blank line required after docstring
  14. # D205: 1 blank line required between summary line and description
  15. # D209: Multi-line docstring cloasing quotes should be on a separate line
  16. # D400: First line should end with a period
  17. # D401: First line should be in imperative mood
  18. # E303: Too many blank lines
  19. # E501: Line too long
  20. # N805: First argument of a method should be named 'self'
  21. # N806: Variable in function should be lowercase
  22. ignore = D100,D101,D102,D103,D105,D200,D202,D204,D205,D209,D400,D401,E303,E501,N805,N806
  23. [testenv]
  24. install_command = pip install -e ".[testing]" -U {opts} {packages}
  25. commands =
  26. elasticsearch2: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch2
  27. elasticsearch5: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch5
  28. noelasticsearch: coverage run runtests.py
  29. basepython =
  30. py34: python3.4
  31. py35: python3.5
  32. py36: python3.6
  33. deps =
  34. django-sendfile==0.3.6
  35. Embedly
  36. dj111: Django>=1.11b1,<2.0
  37. dj111-mssql: django-pyodbc-azure==1.11.0.0
  38. dj20: Django>=2.0,<2.1
  39. postgres: psycopg2>=2.6
  40. mysql: mysqlclient==1.3.6
  41. elasticsearch2: elasticsearch>=2,<3
  42. elasticsearch5: elasticsearch>=5,<6
  43. elasticsearch5: certifi
  44. setenv =
  45. postgres: DATABASE_ENGINE=django.db.backends.postgresql
  46. mysql: DATABASE_ENGINE=django.db.backends.mysql
  47. mysql: DATABASE_HOST=localhost
  48. mysql: DATABASE_USER=root
  49. # Specific for Appveyor, see:
  50. # https://www.appveyor.com/docs/services-databases/#sql-server-2016
  51. mssql: DATABASE_ENGINE=sql_server.pyodbc
  52. mssql: DATABASE_HOST=(local)\SQL2016
  53. mssql: DATABASE_NAME=master
  54. mssql: DATABASE_USER=sa
  55. mssql: DATABASE_PASS=Password12!
  56. [testenv:flake8]
  57. basepython=python3.4
  58. deps=flake8>=2.2.0
  59. commands=flake8 wagtail