https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 614c1ccac5f885e58444fe74a2aedd120d2ca73f authored by Marcos Cáceres on 21 August 2018, 05:04:44 UTC
Add romandev
Tip revision: 614c1cc
tox.ini
[tox]
envlist = py27,py36,pypy
skipsdist=True

[testenv]
# flake8 versions should be kept in sync across tools/tox.ini, tools/wpt/tox.ini, and tools/wptrunner/tox.ini
deps =
  flake8==3.5.0
  pycodestyle==2.3.1
  pyflakes==1.6.0
  pep8-naming==0.4.1
  pytest
  pytest-cov
  mock
  hypothesis
  pytest-catchlog

commands =
  pytest --cov {posargs}
  flake8 --append-config=flake8.ini

passenv =
  HYPOTHESIS_PROFILE

[flake8]
exclude = .tox,html5lib,third_party,pywebsocket,six,_venv,webencodings,wptserve/docs,wptserve/tests/functional/docroot/,wpt,wptrunner
back to top