-
Notifications
You must be signed in to change notification settings - Fork 2
/
.meta.toml
45 lines (38 loc) · 1.03 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
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/zope-product
[meta]
template = "zope-product"
commit-id = "c113d38f"
[python]
with-pypy = false
with-docs = true
with-sphinx-doctests = false
with-windows = false
with-future-python = false
with-macos = false
[coverage]
fail-under = 93
[isort]
known_third_party = "six, MySQLdb, pkg_resources"
[check-manifest]
additional-ignores = [
"docs/_build/html/_static/*",
]
[manifest]
additional-rules = [
"include *.yaml",
"recursive-include src *.dtml",
"recursive-include src *.gif",
"recursive-include src *.svg",
]
[tox]
testenv-deps = [
]
use-flake8 = true
[github-actions]
additional-install = [
"sudo systemctl start mysql.service",
"echo 'CREATE DATABASE IF NOT EXISTS zmysqldatest;' | mysql -uroot -proot",
"echo \"CREATE USER 'zmysqldatest'@'localhost' IDENTIFIED BY 'zmysqldatest';\" | mysql -uroot -proot",
"echo \"GRANT ALL PRIVILEGES ON zmysqldatest.* TO 'zmysqldatest'@'localhost';\" | mysql -uroot -proot",
]