Skip to content

Commit e7b364c

Browse files
committed
Renamed Package
1 parent 9288389 commit e7b364c

33 files changed

+73
-36
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
/build/
55
/dist/
66
/python_a11y_playwright.egg-info/
7+
/python_a11y_playwright_test.egg-info/

ReadMe.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ Below is the example usage using HTML CodeSniffer.
3333
```python
3434
from pathlib import Path
3535

36-
from automateda11y.settings import Settings
36+
from automateda11y.pw.settings import Settings
3737
from playwright.sync_api import sync_playwright
38-
from automateda11y.htmlcsrunner import HtmlCsRunner
38+
from automateda11y.pw.htmlcsrunner import HtmlCsRunner
3939

4040

4141
def json_reports_dir():
@@ -58,9 +58,9 @@ Below is the example usage using Deque Axe.
5858
```python
5959
from pathlib import Path
6060

61-
from automateda11y.settings import Settings
61+
from automateda11y.pw.settings import Settings
6262
from playwright.sync_api import sync_playwright
63-
from automateda11y.axerunner import AxeRunner
63+
from automateda11y.pw.axerunner import AxeRunner
6464

6565

6666
def json_reports_dir():
File renamed without changes.
File renamed without changes.
File renamed without changes.

automateda11y/axerunner.py renamed to automateda11y/pw/axerunner.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from marshmallow import EXCLUDE
22

3-
from automateda11y.a11y.engine import Engine
4-
from automateda11y.modal.axe.issues import Issues
5-
from automateda11y.modal.params import Params
6-
from automateda11y.util.a11y import A11y
3+
from automateda11y.pw.a11y.engine import Engine
4+
from automateda11y.pw.modal.axe.issues import Issues
5+
from automateda11y.pw.modal.params import Params
6+
from automateda11y.pw.util.a11y import A11y
77

88

99
class AxeRunner:

automateda11y/htmlcsrunner.py renamed to automateda11y/pw/htmlcsrunner.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
from automateda11y.a11y.engine import Engine
2-
from automateda11y.modal.htmlcs.issues import Issues
3-
from automateda11y.modal.params import Params
4-
from automateda11y.util.a11y import A11y
1+
from automateda11y.pw.a11y.engine import Engine
2+
from automateda11y.pw.modal.htmlcs.issues import Issues
3+
from automateda11y.pw.modal.params import Params
4+
from automateda11y.pw.util.a11y import A11y
55

66

77
class HtmlCsRunner:
File renamed without changes.
File renamed without changes.

automateda11y/modal/axe/checks.py renamed to automateda11y/pw/modal/axe/checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from marshmallow import EXCLUDE
55
from marshmallow_dataclass import dataclass
66

7-
from automateda11y.modal.axe.relatednode import RelatedNode
7+
from automateda11y.pw.modal.axe.relatednode import RelatedNode
88

99

1010
@dataclass

0 commit comments

Comments
 (0)