https://github.com/web-platform-tests/wpt
Raw File
Tip revision: d474c2a0587f5ff6ae05fde66ac6f43a106d0d05 authored by Anne van Kesteren on 16 November 2018, 12:38:42 UTC
EventSource: test U+0000 in ID better
Tip revision: d474c2a
tox.ini
[tox]
envlist = py27,py36,pypy,{py27,py36}-flake8
skipsdist=True

[testenv]
deps =
  pytest
  pytest-cov
  mock
  hypothesis
  pytest-catchlog

commands = pytest --cov {posargs}

passenv =
  HYPOTHESIS_PROFILE

[testenv:py27-flake8]
deps = -r requirements_flake8.txt
commands = flake8 --append-config=py27-flake8.ini {posargs}

[testenv:py36-flake8]
deps = -r requirements_flake8.txt
commands = flake8 --append-config=py36-flake8.ini {posargs}
back to top