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