Skip to content

Commit ef93767

Browse files
committed
reorder
1 parent 0468ed1 commit ef93767

32 files changed

+78
-84
lines changed

pyproject.toml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,8 @@ version = "0.1.0"
4242
Homepage = "https://github.com/nirtal85/Selenium-Python-Example"
4343
Repository = "https://github.com/nirtal85/Selenium-Python-Example"
4444

45-
[tool.hatch.build.targets.sdist]
46-
include = ["selenium_python_example"]
47-
48-
[tool.hatch.build.targets.wheel]
49-
include = ["selenium_python_example"]
50-
5145
[tool.pytest.ini_options]
46+
pythonpath = "src"
5247
addopts = [
5348
"--clean-alluredir",
5449
"--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)