Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
22 lines
488 B
TOML
22 lines
488 B
TOML
[build-system]
|
|
requires = ["poetry-core>=1.0.0,<2.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
[tool.poetry]
|
|
name = "source-gitlab-tests"
|
|
version = "0.1.0"
|
|
description = "Unit tests for source-gitlab"
|
|
authors = [
|
|
"Airbyte <contact@airbyte.io>"
|
|
]
|
|
package-mode = false
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10,<3.13"
|
|
pytest = "^8"
|
|
airbyte-cdk = "^7"
|
|
requests-mock = "^1.12"
|
|
pytest-mock = "^3"
|
|
[tool.pytest.ini_options]
|
|
filterwarnings = [
|
|
"ignore:This class is experimental*"
|
|
]
|