We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72d0596 commit 919f2b1Copy full SHA for 919f2b1
tox.ini
@@ -1,5 +1,5 @@
1
[tox]
2
-skipsdist=True
+skipsdist = True
3
envlist = cov, flake8
4
5
[testenv]
@@ -24,16 +24,20 @@ commands =
24
flake8 tests
25
26
27
-# pytest Configuration
+# Pytest configuration
28
[pytest]
29
junit_family = xunit2
30
testpaths = tests
31
filterwarnings =
32
ignore:.*'collections'.*'collections.abc'.*:DeprecationWarning
33
ignore:Task.all_tasks() is deprecated, use asyncio.all_tasks().*:PendingDeprecationWarning
34
35
-# Flake8 Configuration
+
36
+# Flake8 configuration
37
[flake8]
38
# gettext() adds _() to the global namespace. This lets flake recognize it.
39
builtins =
40
_,
41
42
+# https://github.com/psf/black/blob/master/docs/the_black_code_style.md#slices
43
+extend-ignore = E203
0 commit comments