Skip to content

Commit

Permalink
more updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jd-lara committed Jan 10, 2024
1 parent 9cfcbd2 commit 83c09ed
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

## Development

Contributions to the development and enahancement of PowerSimulationsDecomposition is welcome. Please see [CONTRIBUTING.md](https://github.com/NREL-Sienna/PowerSimulationsDecomposition.jl/blob/master/CONTRIBUTING.md) for code contribution guidelines.
Contributions to the development and enahancement of PowerSimulationsDecomposition.jl are welcome. Please see [CONTRIBUTING.md](https://github.com/NREL-Sienna/PowerSimulationsDecomposition.jl/blob/master/CONTRIBUTING.md) for code contribution guidelines.

## License

PowerSimulationsDecomposition is released under a BSD [license](https://github.com/NREL/PowerSimulationsDecomposition/blob/master/LICENSE). PowerSimulationsDecomposition.jl has been developed as part of the GDO Inter-Regional Transmission Coordination Project at the U.S. Department of Energy's National Renewable Energy Laboratory ([NREL](https://www.nrel.gov/))
PowerSimulationsDecomposition.jl is released under a BSD [license](https://github.com/NREL/PowerSimulationsDecomposition/blob/master/LICENSE). PowerSimulationsDecomposition.jl has been developed as part of the GDO Inter-Regional Transmission Coordination Project at the U.S. Department of Energy's National Renewable Energy Laboratory ([NREL](https://www.nrel.gov/))
2 changes: 1 addition & 1 deletion src/algorithms/sequential_algorithm.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ end
function build_main_problem!(
container::MultiOptimizationContainer{SequentialAlgorithm},
template::PSI.ProblemTemplate,
sys::PSY.System,)
sys::PSY.System)
end

function solve_impl!(container::MultiOptimizationContainer{SequentialAlgorithm}, sys::PSY.System)
Expand Down
28 changes: 21 additions & 7 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,12 +1,26 @@
# SIIP Packages
using PowerSimulationsDecomposition
using PowerSimulations
using PowerSystems
using PowerSystemCaseBuilder
using InfrastructureSystems
using PowerNetworkMatrices
using HydroPowerSimulations
import PowerSystemCaseBuilder: PSITestSystems
using PowerNetworkMatrices
using StorageSystemsSimulations

# Test Packages
using Test
import Logging
using 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(PowerSimulationsDecomposition)
Aqua.test_undefined_exports(PowerSimulationsDecomposition)
Aqua.test_ambiguities(PowerSimulationsDecomposition)
Aqua.test_stale_deps(PowerSimulationsDecomposition)
Aqua.test_deps_compat(PowerSimulationsDecomposition)

LOG_FILE = "power-systems.log"
LOG_LEVELS = Dict(
Expand Down Expand Up @@ -87,7 +101,7 @@ function run_tests()
end

# Testing Topological components of the schema
@time @testset "Begin PowerSimulationsDecomposition tests" begin
@time @testset "Begin PowerSimulationsDecomposition.jl tests" begin
@includetests ARGS
end

Expand Down

0 comments on commit 83c09ed

Please sign in to comment.