forked from ElSnoMan/pyleniumio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 1.03 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
[tool.poetry]
name = "pylenium"
version = "1.17.0"
description = "The best of Selenium and Cypress in a single Python Package"
authors = ["Carlos <carlos@qap.dev>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
pydantic = "1.9.0"
requests = "2.27.1"
pyfiglet = "^0.8.post1"
pytest = "^6.1.0"
pytest-reportportal = "5.1.0"
pytest-xdist = "2.4.0"
pytest-parallel = "0.1.1"
axe-selenium-python = "^2.1.6"
Faker = "8.16.0"
selenium = "4.1.0"
python-dotenv = "^0.20.0"
rich-click = "^1.5.1"
webdriver-manager = "^3.8.4"
selenium-wire = "^5.1.0"
[tool.poetry.dev-dependencies]
black = "21.12b0"
poethepoet = "^0.10.0"
pytest-cov = "2.12.1"
flake8 = "^5.0.4"
[tool.black]
line-length = 120
[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"