-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathpyproject.toml
53 lines (49 loc) · 1.23 KB
/
pyproject.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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "connector-acceptance-test"
version = "3.9.8"
description = "Contains acceptance tests for connectors."
authors = ["Airbyte <contact@airbyte.io>"]
license = "MIT"
homepage = "https://github.com/airbytehq/airbyte"
[tool.poetry.dependencies]
python = "^3.10, <3.12"
airbyte-protocol-models = "<1.0.0"
dagger-io = "==0.13.3"
beartype = ">=0.18.2"
PyYAML = "~=6.0"
icdiff = "~=1.9"
inflection = "~=0.5"
pdbpp = "~=0.10"
pydantic = "*"
pytest = "~=6.2"
pytest-sugar = "~=0.9"
pytest-timeout = "~=1.4"
pprintpp = "~=0.4"
dpath = "~=2.0.1"
jsonschema = "*"
jsonref = "==0.2"
deepdiff = "~=5.8.0"
requests-mock = "~=1.9.3"
pytest-mock = "~=3.6.1"
pendulum = "*"
pytest-cov = "~=3.0.0"
hypothesis = "*"
hypothesis-jsonschema = "*"
anyio = "^3.4.1"
docker = ">=6,<7"
# Pinning requests and urllib3 to avoid an issue with dockerpy and requests 2.
# Related issue: https://github.com/docker/docker-py/issues/3113
urllib3 = "<2.0"
requests = "~2.31"
pytest-xdist = "^3.3.1"
pytest-reportlog = "^0.4.0"
[tool.poe.tasks]
test = "pytest unit_tests"
ci = ["test"]
[tool.airbyte_ci]
python_versions = ["3.10"]
poe_tasks = ["test"]
mount_docker_socket = true