-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path.meta.toml
67 lines (60 loc) · 1.86 KB
/
.meta.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/pure-python
[meta]
template = "pure-python"
commit-id = "210c1a0c"
[python]
with-pypy = true
with-docs = true
with-sphinx-doctests = false
with-windows = true
with-future-python = false
with-macos = false
[coverage]
fail-under = 82.5
[manifest]
additional-rules = [
"include *.md",
"include *.yaml",
"recursive-include src *.rst",
"recursive-include src *.ini",
]
[flake8]
additional-config = [
"builtins =",
" # src/zope/testrunner/tests/testrunner-ex/sample1/sampletests/test*.py stuff layerx in test.globs",
" layerx",
"per-file-ignores =",
" # E701: multiple statements on one line (colon)",
" # TestLayerOrdering uses this for compact declaration of class graphs.",
" src/zope/testrunner/tests/test_runner.py: E701",
" # E702: multiple statements on one line (semicolon)",
" # Some tests use the \"import pdb; pdb.set_trace()\" idiom.",
" src/zope/testrunner/tests/testrunner-ex/sample2/sampletests_ntds.py: E702",
" src/zope/testrunner/tests/testrunner-ex/sample3/sampletests_d.py: E702",
" # F821: undefined name (y)",
" src/zope/testrunner/tests/testrunner-ex/sample2/sampletests_1.py: F821",
]
[tox]
additional-envlist = [
"py{38,39,310,311,312,313,py3}-subunit",
]
testenv-deps = [
]
testenv-additional-extras = [
"subunit: subunit",
"coverage: subunit",
]
use-flake8 = true
[github-actions]
additional-config = [
"- [\"3.8\", \"py38-subunit\"]",
"- [\"3.9\", \"py39-subunit\"]",
"- [\"3.10\", \"py310-subunit\"]",
"- [\"3.11\", \"py311-subunit\"]",
"- [\"3.12\", \"py312-subunit\"]",
"- [\"3.13\", \"py313-subunit\"]",
"- [\"pypy-3.9\", \"pypy3-subunit\"]",
]
[pre-commit]
teyit-exclude = "tests/testrunner-ex/sample2/badsyntax\\.py"