Skip to content

Commit b2cd3be

Browse files
authored
Merge pull request #465 from nirtal85/reorder
reorder
2 parents 0468ed1 + 3d09c9d commit b2cd3be

32 files changed

+81
-97
lines changed

pyproject.toml

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
[build-system]
2-
build-backend = "hatchling.build"
3-
requires = ["hatchling"]
4-
51
[dependency-groups]
62
dev = [
73
"ruff==0.11.8",
84
"pre-commit==4.2.0"
95
]
106

117
[project]
12-
authors = [{name = "Nir Tal", email = "nirt236@gmail.com"}]
8+
name = "selenium-python-example"
9+
description = "Selenium Python example project with pytest and Allure report"
10+
version = "0.1.0"
1311
dependencies = [
1412
"allure-pytest==2.14.1",
1513
"assertpy==1.1",
@@ -32,23 +30,10 @@ dependencies = [
3230
"visual-regression-tracker==4.9.0",
3331
"xlrd==2.0.1"
3432
]
35-
description = "Selenium Python example project with pytest and Allure report"
36-
name = "selenium-python-example"
37-
readme = "README.md"
3833
requires-python = "~=3.11"
39-
version = "0.1.0"
40-
41-
[project.urls]
42-
Homepage = "https://github.com/nirtal85/Selenium-Python-Example"
43-
Repository = "https://github.com/nirtal85/Selenium-Python-Example"
44-
45-
[tool.hatch.build.targets.sdist]
46-
include = ["selenium_python_example"]
47-
48-
[tool.hatch.build.targets.wheel]
49-
include = ["selenium_python_example"]
5034

5135
[tool.pytest.ini_options]
36+
pythonpath = ["src"]
5237
addopts = [
5338
"--clean-alluredir",
5439
"--alluredir=allure-results",
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import allure
22
from selenium.webdriver.common.by import By
33

4-
from pages.base_page import BasePage
4+
from src.pages.base_page import BasePage
55

66

77
class AboutPage(BasePage):
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import allure
22
from selenium.webdriver.common.by import By
33

4-
from pages.base_page import BasePage
4+
from src.pages.base_page import BasePage
55

66

77
class ForgotPasswordPage(BasePage):
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import allure
22
from selenium.webdriver.common.by import By
33

4-
from pages.top_bars.top_menu_bar import TopMenuBar
4+
from src.pages.top_bars.top_menu_bar import TopMenuBar
55

66

77
class LoginPage(TopMenuBar):
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import allure
22
from selenium.webdriver.common.by import By
33

4-
from pages.base_page import BasePage
4+
from src.pages.base_page import BasePage
55

66

77
class ProjectEditPage(BasePage):
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from selenium.webdriver.common.by import By
33
from selenium.webdriver.support import expected_conditions
44

5-
from pages.top_bars.top_navigate_bar import TopNavigateBar
5+
from src.pages.top_bars.top_navigate_bar import TopNavigateBar
66

77

88
class ProjectTypePage(TopNavigateBar):

0 commit comments

Comments
 (0)