From bcd2a5ec0ba8b0060657f21b6a44a7e892b54259 Mon Sep 17 00:00:00 2001 From: Jose Daniel Lara Date: Thu, 29 Feb 2024 16:22:32 -0700 Subject: [PATCH] rename references --- docs/make.jl | 4 ++-- docs/src/api/internal.md | 2 +- docs/src/api/public.md | 2 +- docs/src/tutorials/intro_page.md | 4 ---- test/runtests.jl | 12 ++++++------ 5 files changed, 10 insertions(+), 14 deletions(-) delete mode 100644 docs/src/tutorials/intro_page.md diff --git a/docs/make.jl b/docs/make.jl index e3818d1..5f1b3cd 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -1,4 +1,4 @@ -using Documenter, SIIP - PACKAGE +using Documenter, PowerSystemsInvestmentsPortfolios pages = OrderedDict( "Welcome Page" => "index.md", @@ -17,7 +17,7 @@ makedocs( ) deploydocs( - repo="github.com/NREL-SIIP/PowerSystemsInvestmentsPortfolios.git", + repo="github.com/NREL-Sienna/PowerSystemsInvestmentsPortfolios.git", target="build", branch="gh-pages", devbranch="main", diff --git a/docs/src/api/internal.md b/docs/src/api/internal.md index 97b37f4..b047ab3 100644 --- a/docs/src/api/internal.md +++ b/docs/src/api/internal.md @@ -1,6 +1,6 @@ # Internal API ```@autodocs -Modules = [SIIP-Package] +Modules = [PowerSystemsInvestmentsPortfolios] Public = false ``` diff --git a/docs/src/api/public.md b/docs/src/api/public.md index 3375250..4c479dc 100644 --- a/docs/src/api/public.md +++ b/docs/src/api/public.md @@ -1,6 +1,6 @@ # Public API Reference ```@autodocs -Modules = [SIIP-Package] +Modules = [PowerSystemsInvestmentsPortfolios] Public = true ``` diff --git a/docs/src/tutorials/intro_page.md b/docs/src/tutorials/intro_page.md deleted file mode 100644 index 695be32..0000000 --- a/docs/src/tutorials/intro_page.md +++ /dev/null @@ -1,4 +0,0 @@ -# SIIP-Examples - -All the tutorials for the SIIP project are part of a separate repository -[SIIP-Examples](https://github.com/NREL-SIIP/SIIPExamples.jl). diff --git a/test/runtests.jl b/test/runtests.jl index c66259c..e883a7a 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -2,11 +2,11 @@ using Test import Logging import Aqua -Aqua.test_unbound_args(SIIP - PACKAGE) -Aqua.test_undefined_exports(SIIP - PACKAGE) -Aqua.test_ambiguities(SIIP - PACKAGE) -Aqua.test_stale_deps(SIIP - PACKAGE) -Aqua.test_deps_compat(SIIP - PACKAGE) +Aqua.test_unbound_args(PowerSystemsInvestmentsPortfolios) +Aqua.test_undefined_exports(PowerSystemsInvestmentsPortfolios) +Aqua.test_ambiguities(PowerSystemsInvestmentsPortfolios) +Aqua.test_stale_deps(PowerSystemsInvestmentsPortfolios) +Aqua.test_deps_compat(PowerSystemsInvestmentsPortfolios) LOG_FILE = "power-systems.log" LOG_LEVELS = Dict( @@ -64,7 +64,7 @@ function get_logging_level_from_env(env_name::String, default) end function run_tests() - logging_config_filename = get(ENV, "SIIP_LOGGING_CONFIG", nothing) + logging_config_filename = get(ENV, "Sienna_LOGGING_CONFIG", nothing) if logging_config_filename !== nothing config = IS.LoggingConfiguration(logging_config_filename) else