Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
repos:
- repo: https://github.com/asottile/reorder-python-imports
rev: v3.10.0
rev: v3.16.0
hooks:
- id: reorder-python-imports
language_version: python3
args:
- --application-directories=.:src
- repo: https://github.com/psf/black
rev: 23.7.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 26.1.0
hooks:
- id: black
args: [--safe, --quiet, --line-length, "100"]
language_version: python3
require_serial: true
- repo: https://github.com/PyCQA/flake8
rev: 6.0.0
rev: 7.3.0
hooks:
- id: flake8
language_version: python3
args:
- --max-line-length=100
- --ignore=W503,E203
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
language_version: python3
Expand All @@ -31,7 +31,7 @@ repos:
- id: debug-statements
language_version: python3
- repo: https://github.com/asottile/pyupgrade
rev: v3.9.0
rev: v3.21.2
hooks:
- id: pyupgrade
language_version: python3
1 change: 0 additions & 1 deletion testing/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from wait_for import wait_for
from widgetastic.browser import Browser


OPTIONS = {"firefox": webdriver.FirefoxOptions(), "chrome": webdriver.ChromeOptions()}


Expand Down
1 change: 0 additions & 1 deletion testing/test_descriptionlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

from widgetastic_patternfly4 import DescriptionList


TESTING_PAGE_URL = "https://patternfly-react-main.surge.sh/components/description-list"


Expand Down
1 change: 0 additions & 1 deletion testing/test_drawer.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from widgetastic_patternfly4 import Drawer
from widgetastic_patternfly4.button import Button


TESTING_PAGE_URL = "https://patternfly-react.surge.sh/components/drawer"


Expand Down
1 change: 0 additions & 1 deletion testing/test_radio.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

from widgetastic_patternfly4 import Radio


TESTING_PAGE_URL = "https://patternfly-react.surge.sh/components/radio"


Expand Down
1 change: 0 additions & 1 deletion testing/test_title.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

from widgetastic_patternfly4 import Title


TESTING_PAGE_URL = "https://patternfly-react.surge.sh/components/title"


Expand Down
Loading