https://github.com/web-platform-tests/wpt
Raw File
Tip revision: be42da5976a6b7ae2ebe9965350a786946fbd072 authored by Frédéric Wang on 20 September 2018, 14:08:51 UTC
CSSOM View Scroll Behavior: Check scroll positions during smooth scrolling starting from different initial positions.
Tip revision: be42da5
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