https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c952312a927eb56c33bf72d2062c6986cac96ff0 authored by Darwin Huang on 26 December 2018, 21:55:09 UTC
Async Clipboard Refactor: Update tests to use arrow functions
Tip revision: c952312
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