diff options
author | Stefan Wagner <stw@bit-strickerei.de> | 2018-11-17 23:20:47 +0100 |
---|---|---|
committer | Andy Postnikov <apostnikov@gmail.com> | 2019-02-14 19:37:37 +0200 |
commit | 695155404260df65c6aa21b856874c3e66fc7f96 (patch) | |
tree | 79ecaf163cf8e495062fe20282855e93ce84c9a6 /testing/py-tinycss/disable-styling-checks.patch | |
parent | f3931fed7f4edae3d41a42c720f89e123b48cc77 (diff) | |
download | aports-695155404260df65c6aa21b856874c3e66fc7f96.tar.bz2 aports-695155404260df65c6aa21b856874c3e66fc7f96.tar.xz |
testing/py-tinycss: upgrade to 0.4
Diffstat (limited to 'testing/py-tinycss/disable-styling-checks.patch')
-rw-r--r-- | testing/py-tinycss/disable-styling-checks.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/testing/py-tinycss/disable-styling-checks.patch b/testing/py-tinycss/disable-styling-checks.patch new file mode 100644 index 0000000000..bcc039e2f5 --- /dev/null +++ b/testing/py-tinycss/disable-styling-checks.patch @@ -0,0 +1,33 @@ +--- a/setup.cfg ++++ b/setup.cfg +@@ -9,7 +9,7 @@ + test = pytest + + [tool:pytest] +-addopts = --flake8 --isort --cov --ignore=test/cairosvg_reference ++addopts = --cov --ignore=test/cairosvg_reference + norecursedirs = dist .cache .git build *.egg-info .eggs venv cairosvg_reference + flake8-ignore = docs/conf.py ALL + isort_ignore = +--- a/setup.py ++++ b/setup.py +@@ -99,9 +99,9 @@ + ], + setup_requires=pytest_runner, + tests_require=[ +- 'pytest-cov', 'pytest-flake8', 'pytest-isort', 'pytest-runner'], ++ 'pytest-cov', 'pytest-runner'], + extras_require={'test': ( +- 'pytest-runner', 'pytest-cov', 'pytest-flake8', 'pytest-isort')}, ++ 'pytest-runner', 'pytest-cov')}, + packages=['tinycss', 'tinycss.tests'], + **kwargs + ) +--- a/tinycss.egg-info/requires.txt ++++ b/tinycss.egg-info/requires.txt +@@ -2,5 +2,3 @@ + [test] + pytest-runner + pytest-cov +-pytest-flake8 +-pytest-isort |