diff --git a/.gitignore b/.gitignore index fe88f997..d6d36dec 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ build/ source/postreise.* source/powersimdata.* source/prereise.* +source/reliabilityassessment.* source/modules.rst source/setup.rst source/test.rst diff --git a/source/conf.py b/source/conf.py index 9f82f7de..5ea2d698 100755 --- a/source/conf.py +++ b/source/conf.py @@ -18,11 +18,13 @@ sys.path.insert(0, os.path.abspath("../../PreREISE")) sys.path.insert(0, os.path.abspath("../../PowerSimData")) sys.path.insert(0, os.path.abspath("../../PostREISE")) +sys.path.insert(0, os.path.abspath("../../reliability-assessment")) import warnings warnings.filterwarnings("ignore", message="numpy.dtype size changed") warnings.filterwarnings("ignore", message="numpy.ufunc size changed") +warnings.filterwarnings("ignore", message="numpy.ndarray size changed") warnings.filterwarnings("ignore", message="Container node skipped") # -- General configuration --------------------------------------------------- @@ -66,10 +68,16 @@ # This pattern also affects html_static_path and html_extra_path. exclude_patterns = [ "_build", + "conftest.rst", "modules.rst", "setup.rst", + "prereise/hydro/legacy/capacity_factor.rst", + "prereise/renewables/solar/wind.rst", "prereise/demand/transportation_electrification/data.rst", "prereise/demand/transportation_electrification/methodology.rst", + "prereise.gather.flexibilitydata.doe.examples.rst", + "postreise/README.md" + "reliabilityassessment/usage.rst", ] # The name of the Pygments (syntax highlighting) style to use. @@ -115,7 +123,6 @@ "fixed_sidebar": False, "sidebar_width": "20%", "page_width": "80%", - "page_width": "auto", "github_button": True, "github_user": "Breakthrough-Energy", "github_repo": "docs", diff --git a/source/index.rst b/source/index.rst index 4aa6e49e..d5305335 100755 --- a/source/index.rst +++ b/source/index.rst @@ -124,3 +124,4 @@ Please review our :doc:`communication/code_of_conduct` before contributing. prereise/index postreise/index reisejl/index + reliabilityassessment/index diff --git a/source/reliabilityassessment b/source/reliabilityassessment new file mode 120000 index 00000000..ed84091f --- /dev/null +++ b/source/reliabilityassessment @@ -0,0 +1 @@ +../../reliability-assessment/docs/ \ No newline at end of file diff --git a/tox.ini b/tox.ini index fdbe5b58..1fa83583 100644 --- a/tox.ini +++ b/tox.ini @@ -1,14 +1,15 @@ [tox] -envlist = {prereise,powersimdata,postreise} +envlist = {reliabilityassessment,powersimdata,prereise,postreise} skipsdist = True [testenv] allowlist_externals = make -setenv = +setenv = + {reliabilityassessment}: PROJECT_DIR = reliability-assessment {prereise}: PROJECT_DIR = PreREISE - {powersimdata}: PROJECT_DIR = PowerSimData {postreise}: PROJECT_DIR = PostREISE -passenv = + {powersimdata}: PROJECT_DIR = PowerSimData +passenv = CPPFLAGS LDFLAGS commands =