tox.ini 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. [tox]
  2. skipsdist = True
  3. usedevelop = True
  4. envlist = py{34,35,36,37}-dj{20,21,22,master}-{sqlite,postgres,mysql,mssql}-{elasticsearch6,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. # W503: line break before binary operator (superseded by W504 line break after binary operator)
  21. # N805: First argument of a method should be named 'self'
  22. # N806: Variable in function should be lowercase
  23. ignore = D100,D101,D102,D103,D105,D200,D202,D204,D205,D209,D400,D401,E303,E501,W503,N805,N806
  24. [testenv]
  25. install_command = pip install -e ".[testing]" -U {opts} {packages}
  26. commands =
  27. elasticsearch2: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch2
  28. elasticsearch5: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch5
  29. elasticsearch6: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch6
  30. noelasticsearch: coverage run runtests.py {posargs}
  31. basepython =
  32. py34: python3.4
  33. py35: python3.5
  34. py36: python3.6
  35. py37: python3.7
  36. deps =
  37. django-sendfile==0.3.6
  38. Embedly
  39. dj20: Django>=2.0,<2.1
  40. dj21: Django>=2.1,<2.2
  41. dj22: git+https://github.com/django/django.git@stable/2.2.x#egg=Django
  42. djmaster: git+https://github.com/django/django.git@master#egg=Django
  43. postgres: psycopg2>=2.6
  44. mysql: mysqlclient>=1.3.7,<1.4
  45. elasticsearch2: elasticsearch>=2,<3
  46. elasticsearch5: elasticsearch>=5,<6
  47. elasticsearch5: certifi
  48. elasticsearch6: elasticsearch>=6,<6.3.1
  49. elasticsearch6: certifi
  50. setenv =
  51. postgres: DATABASE_ENGINE=django.db.backends.postgresql
  52. mysql: DATABASE_ENGINE=django.db.backends.mysql
  53. mysql: DATABASE_HOST=localhost
  54. mysql: DATABASE_USER=root
  55. sqlite: DATABASE_NAME=wagtail.db
  56. # Specific for Appveyor, see:
  57. # https://www.appveyor.com/docs/services-databases/#sql-server-2016
  58. mssql: DATABASE_ENGINE=sql_server.pyodbc
  59. mssql: DATABASE_HOST=(local)\SQL2016
  60. mssql: DATABASE_NAME=master
  61. mssql: DATABASE_USER=sa
  62. mssql: DATABASE_PASS=Password12!
  63. [testenv:flake8]
  64. basepython=python3.4
  65. deps=flake8>=2.2.0
  66. commands=flake8 wagtail