-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 921 Bytes
/
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
[tool.poetry]
name = "pm-tests"
version = "0.1.0"
description = "\"Base project\""
authors = ["Your Name <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9"
pytest = "^6.2.1"
requests = "^2.25.1"
jsonschema = "^3.2.0"
pytest-bdd = "^4.0.2"
jsonpath = "^0.82"
allure-pytest = "^2.8.29"
pytest-github-actions-annotate-failures = "^0.1.1"
Cerberus = "^1.3.2"
assertpy = "^1.1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"api_service: marks tests for api testing')",
"jsonValidation: marks tests with jsonschema validation",
"duck's_search: marks tests with duckducks api search",
]
filterwarnings = [
"error",
"ignore::UserWarning",
# note the use of single quote below to denote "raw" strings in TOML
'ignore:function ham\(\) is deprecated:DeprecationWarning',
]