Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
23 lines
479 B
TOML
23 lines
479 B
TOML
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
name = "source-jira-tests"
|
|
version = "0.0.0"
|
|
description = "Unit tests for source-jira"
|
|
authors = ["Airbyte <contact@airbyte.io>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10,<3.13"
|
|
airbyte-cdk = "^6"
|
|
pytest = "^8"
|
|
responses = "^0.25.7"
|
|
freezegun = "^1.2.2"
|
|
requests-mock = "^1.11.0"
|
|
|
|
[tool.pytest.ini_options]
|
|
filterwarnings = [
|
|
"ignore:This class is experimental*"
|
|
]
|