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.
2 parents f905276 + f5cf117 commit e96209cCopy full SHA for e96209c
Makefile
@@ -14,7 +14,7 @@ mypy:
14
pre-commit run -a mypy
15
16
test:
17
- pytest -v .
+ pytest -vv .
18
19
build: lint test
20
python3 setup.py sdist bdist_wheel
tests/fixtures/config/pyproject.toml
@@ -2,4 +2,6 @@
2
line-length = 20
3
--fast = true
4
pyi = true
5
+skip-magic-trailing-comma = true
6
skip-string-normalization = true
7
+preview = true
tests/test_plugin.py
@@ -233,9 +233,9 @@ def test_load_config(config):
233
"target_version": set(),
234
"pyi": True,
235
"fast": True,
236
- "skip_magic_trailing_comma": False,
+ "skip_magic_trailing_comma": True,
237
"skip_string_normalization": True,
238
- "preview": False,
+ "preview": True,
239
}
240
241
0 commit comments