-
Notifications
You must be signed in to change notification settings - Fork 19
/
.meta.toml
75 lines (69 loc) · 1.96 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
68
69
70
71
72
73
74
75
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/pure-python
[meta]
template = "pure-python"
commit-id = "cb0568c7"
[python]
with-windows = false
with-pypy = true
with-future-python = false
with-docs = true
with-sphinx-doctests = false
with-macos = false
[tox]
use-flake8 = false
testenv-commands = [
"# Run unit tests first.",
"zope-testrunner -u --test-path=src -a 1000 {posargs:-vc}",
"# Only run functional tests if unit tests pass.",
"zope-testrunner -f --test-path=src -a 1000 {posargs:-vc}",
]
testenv-deps = [
"!zodbmaster: ZODB >= 4.2.0b1",
"zodbmaster: -e git+https://github.com/zopefoundation/ZODB.git@master\\#egg=ZODB",
"uvloop: uvloop",
]
testenv-setenv = [
"msgpack1: ZEO_MSGPACK=1",
]
[flake8]
additional-config = [
"# E501 line too long",
"per-file-ignores =",
" src/ZEO/tests/test_cache.py: E501",
" src/ZEO/asyncio/compat.py: F401",
]
[coverage]
fail-under = 53
[manifest]
additional-rules = [
"include *.yaml",
"include *.py",
"include COPYING",
"include log.ini",
"recursive-include src *.csr",
"recursive-include src *.pem",
"recursive-include src *.pyx",
"recursive-include src *.rst",
"recursive-include src *.test",
"recursive-include src *.txt",
"recursive-include src *.xml",
]
[github-actions]
additional-config = [
"- [\"3.7\", \"py37-msgpack1\"]",
"- [\"3.7\", \"py37-uvloop\"]",
"- [\"3.7\", \"py37-zodbmaster\"]",
"- [\"3.8\", \"py38-msgpack1\"]",
"- [\"3.8\", \"py38-uvloop\"]",
"- [\"3.9\", \"py39-msgpack1\"]",
"- [\"3.9\", \"py39-uvloop\"]",
"- [\"3.10\", \"py310-msgpack1\"]",
"- [\"3.10\", \"py310-uvloop\"]",
"- [\"3.10\", \"py310-zodbmaster\"]",
"- [\"3.11\", \"py311-msgpack1\"]",
"- [\"3.11\", \"py311-uvloop\"]",
"- [\"3.12\", \"py312-msgpack1\"]",
"- [\"3.12\", \"py312-uvloop\"]",
"- [\"pypy-3.7\", \"pypy3-msgpack1\"]",
]