forked from ElSnoMan/pyleniumio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.02 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
[tool.poetry]
name = "pyleniumio"
version = "1.12.8"
description = "The best of Selenium and Cypress in a single Python Package"
authors = ["Carlos <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
webdriver-manager = "^3.3.0"
pydantic = "^1.7.3"
requests = "^2.25.1"
click = "^7.1.2"
pyfiglet = "^0.8.post1"
pytest = "<6.1.0"
pytest-reportportal = "^5.0.7"
pytest-xdist = "^2.2.0"
pytest-parallel = "^0.1.0"
axe-selenium-python = "^2.1.6"
selenium = "^3.141.0"
Faker = "^8.2.1"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.4"
black = "^21.5b1"
poethepoet = "^0.10.0"
pytest-cov = "^2.12.0"
[tool.black]
line-length = 119
skip-string-normalization = true
[tool.poe.tasks]
test-unit = { "cmd" = "pytest tests/unit --cov=. --cov-report term-missing -n 4", "help" = "Run Unit Tests and get Code Coverage Report" }
test-ui = { "cmd" = "pytest tests/ui --cov=. --cov-report term-missing -n 2", "help" = "Run UI Tests" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"