forked from psycopg/ZPsycopgDA
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.meta.toml
55 lines (48 loc) · 1.22 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
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/zope-product
[meta]
template = "zope-product"
commit-id = "cb0568c7"
[python]
with-windows = false
with-pypy = false
with-future-python = false
with-docs = true
with-sphinx-doctests = false
with-macos = false
[tox]
use-flake8 = true
testenv-additional = [
"passenv = ZPSYCOPGDA_TEST_DSN",
]
[manifest]
additional-rules = [
"include *.yaml",
"recursive-include src *.dtml",
"recursive-include src *.gif",
"recursive-include src *.svg",
]
[check-manifest]
additional-ignores = [
"docs/_build/html/_static/*",
]
[coverage]
fail-under = 85
[isort]
known_third_party = "psycopg2"
[github-actions]
services = [
"postgres:",
" image: postgres:latest",
" env:",
" POSTGRES_USER: postgres",
" POSTGRES_PASSWORD: postgres",
" POSTGRES_DB: postgres",
" ports:",
" - 5432:5432",
" # needed because the postgres container does not provide a healthcheck",
" options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5",
]
test-environment = [
"ZPSYCOPGDA_TEST_DSN: 'host=localhost port=5432 user=postgres password=postgres dbname=postgres'",
]