mirror of
https://github.com/tcsenpai/Zundler.git
synced 2025-06-07 03:55:26 +00:00
Black tests
This commit is contained in:
parent
b79e0f6d07
commit
6f7ea071ff
@ -1,11 +1,11 @@
|
||||
from sphinx.application import Sphinx
|
||||
|
||||
project = 'copy-button'
|
||||
copyright = '2024, Adrian Vollmer'
|
||||
author = 'Adrian Vollmer'
|
||||
version = '0.0.1'
|
||||
project = "copy-button"
|
||||
copyright = "2024, Adrian Vollmer"
|
||||
author = "Adrian Vollmer"
|
||||
version = "0.0.1"
|
||||
|
||||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
||||
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
||||
|
||||
extensions = [
|
||||
"sphinx_copybutton",
|
||||
|
@ -1,4 +1,5 @@
|
||||
from sphinx.application import Sphinx
|
||||
|
||||
# Configuration file for the Sphinx documentation builder.
|
||||
#
|
||||
# For the full list of built-in configuration values, see the documentation:
|
||||
@ -7,16 +8,16 @@ from sphinx.application import Sphinx
|
||||
# -- Project information -----------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
||||
|
||||
project = 'demo001'
|
||||
copyright = '2022, Adrian Vollmer'
|
||||
author = 'Adrian Vollmer'
|
||||
version = '0.0.1'
|
||||
project = "demo001"
|
||||
copyright = "2022, Adrian Vollmer"
|
||||
author = "Adrian Vollmer"
|
||||
version = "0.0.1"
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
||||
|
||||
templates_path = ['_templates']
|
||||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
||||
templates_path = ["_templates"]
|
||||
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
||||
|
||||
# -- Options for HTML output -------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
||||
|
@ -6,22 +6,21 @@
|
||||
# -- Project information -----------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
||||
|
||||
project = 'demo002'
|
||||
copyright = '2023, Adrian Vollmer'
|
||||
author = 'Adrian Vollmer'
|
||||
project = "demo002"
|
||||
copyright = "2023, Adrian Vollmer"
|
||||
author = "Adrian Vollmer"
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
||||
|
||||
extensions = []
|
||||
|
||||
templates_path = ['_templates']
|
||||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
||||
|
||||
templates_path = ["_templates"]
|
||||
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
||||
|
||||
|
||||
# -- Options for HTML output -------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
||||
|
||||
html_theme = 'alabaster'
|
||||
html_static_path = ['_static']
|
||||
html_theme = "alabaster"
|
||||
html_static_path = ["_static"]
|
||||
|
@ -1,12 +1,10 @@
|
||||
from sphinx.application import Sphinx
|
||||
|
||||
project = 'mermaid'
|
||||
copyright = '2024, Adrian Vollmer'
|
||||
author = 'Adrian Vollmer'
|
||||
version = '0.0.1'
|
||||
project = "mermaid"
|
||||
copyright = "2024, Adrian Vollmer"
|
||||
author = "Adrian Vollmer"
|
||||
version = "0.0.1"
|
||||
|
||||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
||||
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
||||
|
||||
extensions = [
|
||||
'sphinxcontrib.mermaid'
|
||||
]
|
||||
extensions = ["sphinxcontrib.mermaid"]
|
||||
|
@ -1,8 +1,8 @@
|
||||
from sphinx.application import Sphinx
|
||||
|
||||
project = 'multi-page'
|
||||
copyright = '2024, Adrian Vollmer'
|
||||
author = 'Adrian Vollmer'
|
||||
version = '0.0.1'
|
||||
project = "multi-page"
|
||||
copyright = "2024, Adrian Vollmer"
|
||||
author = "Adrian Vollmer"
|
||||
version = "0.0.1"
|
||||
|
||||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
||||
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
||||
|
@ -63,7 +63,9 @@ def test_multi_page(selenium):
|
||||
|
||||
selenium.switch_to.frame("main")
|
||||
|
||||
second_link = selenium.find_element(By.XPATH, "//a[text() = 'Second' and @class = 'reference internal']")
|
||||
second_link = selenium.find_element(
|
||||
By.XPATH, "//a[text() = 'Second' and @class = 'reference internal']"
|
||||
)
|
||||
|
||||
second_link.click()
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user