Skip to content

Commit

Permalink
fix: various issues with files to fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
lwasser committed Nov 20, 2024
1 parent a3f0cac commit 1f0bdbd
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
<<<<<<< Updated upstream
=======
import os
>>>>>>> Stashed changes
import pathlib

import nox
Expand All @@ -11,14 +8,11 @@
OUTPUT_DIR = pathlib.Path(BUILD_DIR, "html")
SOURCE_DIR = pathlib.Path(".")

<<<<<<< Updated upstream
# Sphinx output and source directories
BUILD_DIR = "_build"
OUTPUT_DIR = pathlib.Path(BUILD_DIR, "html")
SOURCE_DIR = pathlib.Path(".")

=======
>>>>>>> Stashed changes
# Sphinx build commands
SPHINX_BUILD = "sphinx-build"
SPHINX_AUTO_BUILD = "sphinx-autobuild"
Expand Down Expand Up @@ -50,8 +44,6 @@ def docs(session):
OUTPUT_DIR,
*session.posargs,
)
<<<<<<< Updated upstream
=======


@nox.session(name="docs-test")
Expand All @@ -73,7 +65,6 @@ def docs_test(session):
# When building the guide with additional parameters, also build the translations in RELEASE_LANGUAGES
# with those same parameters.
session.notify("build-translations", ["release-build", *TEST_PARAMETERS])
>>>>>>> Stashed changes


@nox.session(name="docs-live")
Expand All @@ -91,10 +82,7 @@ def docs_live(session):
]
for folder in AUTOBUILD_IGNORE:
cmd.extend(["--ignore", f"*/{folder}/*"])
<<<<<<< Updated upstream
=======

>>>>>>> Stashed changes
session.run(*cmd)


Expand Down

0 comments on commit 1f0bdbd

Please sign in to comment.