Skip to content

Add traits to static injectors about active power, reactive power, voltage control#1645

Open
Copilot wants to merge 7 commits intomainfrom
copilot/add-traits-to-static-injectors
Open

Add traits to static injectors about active power, reactive power, voltage control#1645
Copilot wants to merge 7 commits intomainfrom
copilot/add-traits-to-static-injectors

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Mar 24, 2026

Extends the existing supports_services trait pattern to static injectors with three new capability traits, enabling cross-referencing component capabilities across the Sienna platform. Traits are instance-based where device data (enum flags, bus type) determines the result.

Changes

  • supports_active_power(::StaticInjection) — defaults true; false for SynchronousCondenser, FixedAdmittance, SwitchedAdmittance; FACTSControlDevice checks control_mode enum (true for NML, false for nothing/OOS/BYP)
  • supports_reactive_power(::StaticInjection) — defaults true; false for InterconnectingConverter, FixedAdmittance; FACTSControlDevice checks control_mode enum (false for nothing/OOS, true for NML/BYP); SwitchedAdmittance defaults to true (can control reactive power)
  • supports_voltage_control(::StaticInjection) — defaults false; true for Generator, Source, Storage, StaticInjectionSubsystem; FACTSControlDevice checks control_mode enum (false for nothing/OOS, true for NML/BYP); SynchronousCondenser checks bustype directly (true for PV/REF/SLACK, false otherwise — no nothing guard since bus is always present)
  • All three exported from PowerSystems.jl
  • 72 test assertions covering all concrete StaticInjection subtypes, including data-dependent behavior for FACTS control modes and bus types

Usage

using PowerSystems

supports_active_power(ThermalStandard(nothing))      # true
supports_active_power(SynchronousCondenser(nothing))  # false

# FACTSControlDevice active power depends on control_mode (true only for NML)
facts = FACTSControlDevice(nothing)                    # control_mode=nothing
supports_active_power(facts)                           # false
set_control_mode!(facts, FACTSOperationModes.NML)
supports_active_power(facts)                           # true (both Series and Shunt links operating)
set_control_mode!(facts, FACTSOperationModes.BYP)
supports_active_power(facts)                           # false (series bypassed, STATCOM only)

supports_reactive_power(Source(nothing))               # true
supports_reactive_power(InterconnectingConverter(nothing)) # false
supports_reactive_power(SwitchedAdmittance(nothing))   # true

# FACTSControlDevice reactive power depends on control_mode
facts2 = FACTSControlDevice(nothing)
set_control_mode!(facts2, FACTSOperationModes.NML)
supports_reactive_power(facts2)                        # true

supports_voltage_control(ThermalStandard(nothing))    # true
supports_voltage_control(PowerLoad(nothing))          # false

# SynchronousCondenser voltage control depends on bus type
# With a PV bus → true, with a PQ bus → false

Default dispatch is on StaticInjection in static_models.jl; concrete/abstract overrides and instance-based methods live in supplemental_accessors.jl (loaded after generated types, matching the existing supports_services(::AreaInterchange) pattern).

Original prompt

This section details on the original issue you should resolve

<issue_title>Add traits to static injectors about active power, reactive power, voltage control</issue_title>
<issue_description>This is an extension of #1435 that will enable cross referencing traits across the platform about what components can do </issue_description>

Comments on the Issue (you are @copilot in this section)


📍 Connect Copilot coding agent with Jira, Azure Boards or Linear to delegate work to Copilot in one click without leaving your project management tool.

…control traits for StaticInjection types

Co-authored-by: jd-lara <16385323+jd-lara@users.noreply.github.com>
Agent-Logs-Url: https://github.com/NREL-Sienna/PowerSystems.jl/sessions/b4e1573e-353e-4de2-a675-beeeb8ddbd2e
Copilot AI changed the title [WIP] Add traits to static injectors for active power, reactive power, voltage control Add traits to static injectors about active power, reactive power, voltage control Mar 24, 2026
Copilot AI requested a review from jd-lara March 24, 2026 20:41
@jd-lara
Copy link
Copy Markdown
Member

jd-lara commented Mar 24, 2026

@copilot the traits implemented for FACTs and some other components depend on the flags in the data. For components with specific enum values that describe the control objectives these should be taken into consideration.

For synchronous condenser the control voltage is dependent on the bus type as well.

Fix these trait calculations

@codecov
Copy link
Copy Markdown

codecov Bot commented Mar 24, 2026

Codecov Report

❌ Patch coverage is 45.45455% with 12 lines in your changes missing coverage. Please review.
✅ Project coverage is 84.05%. Comparing base (e457793) to head (09b672a).
⚠️ Report is 1 commits behind head on main.

Files with missing lines Patch % Lines
src/models/supplemental_accessors.jl 52.63% 9 Missing ⚠️
src/models/static_models.jl 0.00% 3 Missing ⚠️
Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #1645      +/-   ##
==========================================
- Coverage   84.13%   84.05%   -0.09%     
==========================================
  Files         204      204              
  Lines       10536    10558      +22     
==========================================
+ Hits         8864     8874      +10     
- Misses       1672     1684      +12     
Flag Coverage Δ
unittests 84.05% <45.45%> (-0.09%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
src/PowerSystems.jl 0.00% <ø> (ø)
src/models/static_models.jl 50.00% <0.00%> (-11.54%) ⬇️
src/models/supplemental_accessors.jl 37.24% <52.63%> (+2.32%) ⬆️
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Copy link
Copy Markdown
Contributor Author

Copilot AI commented Mar 24, 2026

@copilot the traits implemented for FACTs and some other components depend on the flags in the data. For components with specific enum values that describe the control objectives these...

Fixed in 2fc6c08 and 72065ed. The traits are now instance-based for FACTSControlDevice and SynchronousCondenser:

  • FACTSControlDevice: supports_reactive_power and supports_voltage_control now check the control_mode field — returns false for nothing/OOS, true for NML/BYP
  • SynchronousCondenser: supports_voltage_control now checks the bus type via get_bustype(get_bus(d)) — returns true only for PV/REF/SLACK buses

Tests cover all enum values and bus type combinations.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • https://api.github.com/repos/FluxML/MacroTools.jl/tarball/1e0228a030642014fe5cfe68c2c0a818f9e3f522
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaArrays/ArrayInterface.jl/tarball/78b3a7a536b4b0a747a0f296ea77091ca0a9f9a3
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaArrays/StaticArraysCore.jl/tarball/6ab403037779dae8c514bad259f32a447262455a
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Blosc_jll.jl/tarball/535c80f1c0847a4c967ea945fca21becc9de1522
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/HDF5_jll.jl/tarball/e94f84da9af7ce9c6be049e9067e511e17ff89ec
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Hwloc_jll.jl/tarball/baaaebd42ed9ee1bd9173cfd56910e55a8622ee1
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Libiconv_jll.jl/tarball/be484f5c92fad0bd8acfef35fe017900b0b73809
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Lz4_jll.jl/tarball/191686b1ac1ea9c89fc52e996ad15d1d241d1e33
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/MPICH_jll.jl/tarball/9341048b9f723f2ae2a72a5269ac2f15f80534dc
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/MPItrampoline_jll.jl/tarball/36c2d142e7d45fb98b5f83925213feb3292ca348
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/MicrosoftMPI_jll.jl/tarball/bc95bf4149bf535c09602e3acdf950d9b4376227
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/OpenMPI_jll.jl/tarball/2f3d05e419b6125ffe06e55784102e99325bdbe2
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/OpenSpecFun_jll.jl/tarball/1346c9208249809840c91b26703912dff463d335
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/SQLite_jll.jl/tarball/0b5f220f90642566b65ba86549d1ee4118ab2579
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/XML2_jll.jl/tarball/80d3930c6347cfce7ccf96bd3bafdf079d9c0390
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Xorg_libpciaccess_jll.jl/tarball/4909eb8f1cbf6bd4b1c30dd18b2ead9019ef2fad
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Zstd_jll.jl/tarball/446b23e73536f84e8037f5dce465e92275f6a308
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/dlfcn_win32_jll.jl/tarball/e141d67ffe550eadfb5af1bdbdaf138031e4805f
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/libaec_jll.jl/tarball/13b760f97c6e753b47df30cb438d4dc3b50df282
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaCollections/AbstractTrees.jl/tarball/2d9c9a55f9c93e8887ad391fbae72f8ef55e1177
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaCollections/DataStructures.jl/tarball/e357641bb3e0638d353c4b29ea0e40ea644066a6
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaCollections/LeftChildRightSiblingTrees.jl/tarball/95ba48564903b43b2462318aa243ee79d81135ff
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaCollections/OrderedCollections.jl/tarball/05868e21324cede2207c6f0f466b4bfef6d5e7ee
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaCollections/SortingAlgorithms.jl/tarball/64d974c2e6fdf07f8155b5b2ca2ffa9069b608d9
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaData/CSV.jl/tarball/8d8e0b0f350b8e1c91420b5e64e5de774c2f0f4d
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaData/DataAPI.jl/tarball/abe83f3a2f1b857aac70ef8b269080af17764bbe
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaData/DataFrames.jl/tarball/d8928e9169ff76c6281f39a659f9bca3a573f24c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaData/DataFramesMeta.jl/tarball/b0652fb7f3c094cf453bf22e699712a0bed9fc83
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaData/DelimitedFiles.jl/tarball/9e2f36d3c96a820c678f2f1f1782582fcf685bae
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaData/InvertedIndices.jl/tarball/6da3c4316095de0f5ee2ebd875df8721e7e0bdbe
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaData/Missings.jl/tarball/ec4f7fbeab05d7747bdf98eb74d130a2a2ed298d
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaData/Parsers.jl/tarball/7d2f8f21da5db6a806faf7b9b292296da42b2810
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaData/PooledArrays.jl/tarball/36d8b4b899628fb92c2749eb488d884a926614d3
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaData/SentinelArrays.jl/tarball/ebe7e59b37c400f694f52b58c93d26201387da70
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaData/StructTypes.jl/tarball/159331b30e94d7b11379037feeb9b690950cace8
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaData/TableMetadataTools.jl/tarball/c0405d3f8189bb9a9755e429c6ea2138fca7e31f
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaData/Tables.jl/tarball/f2c1efbc8f3a609aadf318094f8fc5204bdaf344
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaData/WeakRefStrings.jl/tarball/b1be2855ed9ed8eac54e5caff2afcdb442d52c23
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaData/YAML.jl/tarball/a1c0c7585346251353cddede21f180b96388c403
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaDatabases/DBInterface.jl/tarball/a444404b3f94deaa43ca2a58e18153a82695282b
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaDatabases/SQLite.jl/tarball/87b47a05946c50f44531b447b1f24968345316a4
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaDiff/DiffResults.jl/tarball/782dd5f4561f5d267313f23853baaaa4c52ea621
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaDiff/DiffRules.jl/tarball/23163d55f885173722d1e4cf0f6110cdbaf7e272
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaDiff/DifferentiationInterface.jl/tarball/7ae99144ea44715402c6c882bfef2adbeadbc4ce
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaDiff/FiniteDiff.jl/tarball/9340ca07ca27093ff68418b7558ca37b05f8aeb1
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaDiff/ForwardDiff.jl/tarball/cddeab6487248a39dae1a960fff0ac17b2a28888
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaDocs/DocStringExtensions.jl/tarball/7442a5dfe1ebb773c29cc2962a8980f47221d76c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaGPU/Adapt.jl/tarball/35ea197a51ce46fcd01c4a44befce0578a1aaeca
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaIO/Blosc.jl/tarball/310b77648d38c223d947ff3f50f511d08690b8d5
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaIO/CodecZlib.jl/tarball/962834c22b66e32aa10f7611c08c8ca4e20749a9
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaIO/HDF5.jl/tarball/d778420e524bcf56066e8c63c7aa315ae7269da2
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaIO/HDF5.jl/tarball/e856eef26cf5bf2b0f95f8f4fc37553c72c8641c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaIO/TranscodingStreams.jl/tarball/0c45878dcfdcfa8480052b6ab162cdd138781742
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaLang/Compat.jl/tarball/9d8a54ce4b17aa5bdce0ea5c34bc5e7c340d16ad
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaLang/PrecompileTools.jl/tarball/07a921781cab75691315adc645096ed5e370cb77
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaLogging/ProgressLogging.jl/tarball/f0803bc1171e455a04124affa9c21bba5ac4db32
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaLogging/TerminalLoggers.jl/tarball/f133fab380933d042f6796eda4e130272ba520ca
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaMath/IrrationalConstants.jl/tarball/b2d91fe939cae05960e760110b328288867b5758
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaMath/NaNMath.jl/tarball/9b8215b1ee9e78a293f99797cd31375471b2bcae
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaMath/SpecialFunctions.jl/tarball/5acc6a41b3082920f79ca3c759acbcecf18a8d78
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaNLSolvers/LineSearches.jl/tarball/9ea3422d03222c6de679934d1c08f0a99405aa03
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaNLSolvers/NLSolversBase.jl/tarball/25a6638571a902ecfb1ae2a18fc1575f86b1d4df
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaNLSolvers/NLsolve.jl/tarball/019f12e9a1a7880459d0173c182e6a99365d7ac1
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaObjects/ConstructionBase.jl/tarball/b4b092499347b18a015186eae3042f72267106cb
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaPackaging/JLLWrappers.jl/tarball/0533e564aae234aff59ab625543145446d8b6ec2
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaPackaging/Preferences.jl/tarball/8b770b60760d4451834fe79dd483e318eee709c4
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaPackaging/Requires.jl/tarball/62389eeff14780bfe55195b7204c0d8738436d64
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaParallel/MPI.jl/tarball/8e98d5d80b87403c311fd51e8455d4546ba7a5f8
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaPhysics/Unitful.jl/tarball/57e1b2c9de4bd6f40ecb9de4ac1797b81970d008
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaPlots/Plots.jl/tarball/5c3d09cc4f31f5fc6af001c250bf1278733100ff
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaServices/WorkerUtilities.jl/tarball/cd1659ba0d57b71a464a29e64dbc67cfe83d54e7
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaStats/Distances.jl/tarball/c7e3a542b999843086e2f29dac96a618c105be1d
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaStats/LogExpFunctions.jl/tarball/13ca9e2586b89836fd20cccf56e57e2b9ae7f38f
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaStats/Statistics.jl/tarball/ae3bb1eb3bba077cd276bc5cfc337cc65c3075c0
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaStats/StatsAPI.jl/tarball/178ed29fd5b2a2cfc3bd31c13375ae925623ff36
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaStats/TimeSeries.jl/tarball/e1235a1906d1e6d27c30c35daa91fcf6fc271f08
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaStrings/InlineStrings.jl/tarball/8f3d257792a522b4601c24a577954b0a8cd7334d
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaStrings/LaTeXStrings.jl/tarball/dda21b8cbd6a6c40d9d02a73230f9d70fed6918c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaStrings/StringEncodings.jl/tarball/b765e46ba27ecf6b44faf70df40c57aa3a547dcb
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaTesting/Aqua.jl/tarball/d57fd255a8932b6509baf43284c416fc44d0b903
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/JuliaTesting/ExprTools.jl/tarball/27415f162e6028e81c72b82ef756bf321213b6ec
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/KristofferC/Crayons.jl/tarball/249fe38abf76d48563e2f4556bebd215aa317e15
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/KristofferC/TimerOutputs.jl/tarball/3748bd928e68c7c346b52125cf41fff0de6937d0
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/NREL-Sienna/InfrastructureSystems.jl/tarball/de2372739fb514a610f9d1dd9bc159d3008436b8
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/NREL-Sienna/PowerSystemCaseBuilder.jl/tarball/ab9a5d728e749ec85ced41617ae2014fdda59765
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/SciML/ADTypes.jl/tarball/f7304359109c768cf32dc5fa2d371565bb63b68a
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/jkrumbiegel/Chain.jl/tarball/765487f32aeece2cf28aa7038e29c31060cb5a69
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/joshday/StringTemplates.jl/tarball/d78012ad7c6c22aba229a6363ec83ebc9ce5c135
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/jverzani/Mustache.jl/tarball/3cbd5dda543bc59f2e482607ccf84b633724fc32
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/jw3126/Setfield.jl/tarball/c5391c6ace3bc430ca630251d02ea9687169ca68
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/nickrobinson251/PowerFlowData.jl/tarball/54d48d25e7d7511bbc8eb0ecff9e32f38c6f267c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/queryverse/DataValueInterfaces.jl/tarball/bfc1187b79289637fa0ef6d4436ebdfe6905cbd6
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/queryverse/IteratorInterfaceExtensions.jl/tarball/a3f24677c21f5bbe9d2a714f95dcd58337fb2856
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/queryverse/TableTraits.jl/tarball/c06b2f539df1c6efa794486abfb6ed2022561a39
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/quinnj/JSON3.jl/tarball/411eccfe8aba0814ffa0fdf4860913ed09c34975
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/rdeits/CommonSubexpressions.jl/tarball/cda2cfaebb4be89c9084adaca7dd7333369715c5
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/rofinn/FilePathsBase.jl/tarball/3bab2c5aa25e7840a4b065805c0cdfc01f3068d2
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/ronisbr/PrettyTables.jl/tarball/568dec03462a2b686e9e6ce37dfd0f5aad3301b1
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/ronisbr/StringManipulation.jl/tarball/d05693d339e37d6ab134c5ab53c29fce5ee5d7d5
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • https://api.github.com/repos/simonster/Reexport.jl/tarball/45e428421666073eab6f2da5c9d310d99bb12f9b
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (http block)
  • pkg.julialang.org
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) -l des\|ACBusTypes ridSystem.jl /usr/bin/grep unset ationA.jl (dns block)
    • Triggering command: /usr/local/julia1.12.5/bin/julia /usr/local/julia1.12.5/bin/julia -C native -J/usr/local/julia1.12.5/lib/julia/sys.so -g1 --code-coverage=none --color=yes --check-bounds=yes --warn-overwrite=yes --depwarn=yes --inline=yes --startup-file=no --track-allocation=none --check-bounds=yes --output-o /home/REDACTED/.julia/compiled/v1.12/PowerSystemCaseBuilder/jl_0FSxA7 --output-ji /home/REDACTED/.julia/compiled/v1.12/PowerSystemCaseBuilder/jl_qYMxaN --output-incremental=yes --startup-file=no (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

Comment thread src/models/supplemental_accessors.jl Outdated

# supports_active_power overrides for types without controllable active power
supports_active_power(::SynchronousCondenser) = false
supports_active_power(::FACTSControlDevice) = false
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot This should also depend on the control mode of the FACTSControlDevice. if the control mode of the facts is NML, this should return true

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in 18b43f6. supports_active_power(::FACTSControlDevice) is now instance-based — returns true for NML (both Series and Shunt links operating), false for BYP (series bypassed, shunt acts as STATCOM for reactive only), OOS, and nothing.

Copy link
Copy Markdown
Contributor Author

Copilot AI commented Mar 25, 2026

Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • https://api.github.com/repos/FluxML/MacroTools.jl/tarball/1e0228a030642014fe5cfe68c2c0a818f9e3f522
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaArrays/ArrayInterface.jl/tarball/78b3a7a536b4b0a747a0f296ea77091ca0a9f9a3
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaArrays/StaticArraysCore.jl/tarball/6ab403037779dae8c514bad259f32a447262455a
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Blosc_jll.jl/tarball/535c80f1c0847a4c967ea945fca21becc9de1522
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/HDF5_jll.jl/tarball/e94f84da9af7ce9c6be049e9067e511e17ff89ec
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Hwloc_jll.jl/tarball/baaaebd42ed9ee1bd9173cfd56910e55a8622ee1
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Libiconv_jll.jl/tarball/be484f5c92fad0bd8acfef35fe017900b0b73809
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Lz4_jll.jl/tarball/191686b1ac1ea9c89fc52e996ad15d1d241d1e33
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/MPICH_jll.jl/tarball/9341048b9f723f2ae2a72a5269ac2f15f80534dc
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/MPItrampoline_jll.jl/tarball/36c2d142e7d45fb98b5f83925213feb3292ca348
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/MicrosoftMPI_jll.jl/tarball/bc95bf4149bf535c09602e3acdf950d9b4376227
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/OpenMPI_jll.jl/tarball/2f3d05e419b6125ffe06e55784102e99325bdbe2
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/OpenSpecFun_jll.jl/tarball/1346c9208249809840c91b26703912dff463d335
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/SQLite_jll.jl/tarball/0b5f220f90642566b65ba86549d1ee4118ab2579
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/XML2_jll.jl/tarball/80d3930c6347cfce7ccf96bd3bafdf079d9c0390
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Xorg_libpciaccess_jll.jl/tarball/4909eb8f1cbf6bd4b1c30dd18b2ead9019ef2fad
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Zstd_jll.jl/tarball/446b23e73536f84e8037f5dce465e92275f6a308
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/dlfcn_win32_jll.jl/tarball/e141d67ffe550eadfb5af1bdbdaf138031e4805f
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/libaec_jll.jl/tarball/13b760f97c6e753b47df30cb438d4dc3b50df282
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaCollections/AbstractTrees.jl/tarball/2d9c9a55f9c93e8887ad391fbae72f8ef55e1177
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaCollections/DataStructures.jl/tarball/e357641bb3e0638d353c4b29ea0e40ea644066a6
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaCollections/LeftChildRightSiblingTrees.jl/tarball/95ba48564903b43b2462318aa243ee79d81135ff
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaCollections/OrderedCollections.jl/tarball/05868e21324cede2207c6f0f466b4bfef6d5e7ee
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaCollections/SortingAlgorithms.jl/tarball/64d974c2e6fdf07f8155b5b2ca2ffa9069b608d9
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/CSV.jl/tarball/8d8e0b0f350b8e1c91420b5e64e5de774c2f0f4d
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/DataAPI.jl/tarball/abe83f3a2f1b857aac70ef8b269080af17764bbe
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/DataFrames.jl/tarball/d8928e9169ff76c6281f39a659f9bca3a573f24c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/DataFramesMeta.jl/tarball/b0652fb7f3c094cf453bf22e699712a0bed9fc83
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/DelimitedFiles.jl/tarball/9e2f36d3c96a820c678f2f1f1782582fcf685bae
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/InvertedIndices.jl/tarball/6da3c4316095de0f5ee2ebd875df8721e7e0bdbe
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/Missings.jl/tarball/ec4f7fbeab05d7747bdf98eb74d130a2a2ed298d
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/Parsers.jl/tarball/7d2f8f21da5db6a806faf7b9b292296da42b2810
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/PooledArrays.jl/tarball/36d8b4b899628fb92c2749eb488d884a926614d3
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/SentinelArrays.jl/tarball/ebe7e59b37c400f694f52b58c93d26201387da70
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/StructTypes.jl/tarball/159331b30e94d7b11379037feeb9b690950cace8
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/TableMetadataTools.jl/tarball/c0405d3f8189bb9a9755e429c6ea2138fca7e31f
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/Tables.jl/tarball/f2c1efbc8f3a609aadf318094f8fc5204bdaf344
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/WeakRefStrings.jl/tarball/b1be2855ed9ed8eac54e5caff2afcdb442d52c23
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/YAML.jl/tarball/a1c0c7585346251353cddede21f180b96388c403
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDatabases/DBInterface.jl/tarball/a444404b3f94deaa43ca2a58e18153a82695282b
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDatabases/SQLite.jl/tarball/87b47a05946c50f44531b447b1f24968345316a4
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDiff/DiffResults.jl/tarball/782dd5f4561f5d267313f23853baaaa4c52ea621
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDiff/DiffRules.jl/tarball/23163d55f885173722d1e4cf0f6110cdbaf7e272
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDiff/DifferentiationInterface.jl/tarball/7ae99144ea44715402c6c882bfef2adbeadbc4ce
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDiff/FiniteDiff.jl/tarball/9340ca07ca27093ff68418b7558ca37b05f8aeb1
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDiff/ForwardDiff.jl/tarball/cddeab6487248a39dae1a960fff0ac17b2a28888
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDocs/DocStringExtensions.jl/tarball/7442a5dfe1ebb773c29cc2962a8980f47221d76c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaGPU/Adapt.jl/tarball/35ea197a51ce46fcd01c4a44befce0578a1aaeca
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaIO/Blosc.jl/tarball/310b77648d38c223d947ff3f50f511d08690b8d5
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaIO/CodecZlib.jl/tarball/962834c22b66e32aa10f7611c08c8ca4e20749a9
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaIO/HDF5.jl/tarball/d778420e524bcf56066e8c63c7aa315ae7269da2
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaIO/HDF5.jl/tarball/e856eef26cf5bf2b0f95f8f4fc37553c72c8641c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaIO/TranscodingStreams.jl/tarball/0c45878dcfdcfa8480052b6ab162cdd138781742
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaLang/Compat.jl/tarball/9d8a54ce4b17aa5bdce0ea5c34bc5e7c340d16ad
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaLang/PrecompileTools.jl/tarball/07a921781cab75691315adc645096ed5e370cb77
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaLogging/ProgressLogging.jl/tarball/f0803bc1171e455a04124affa9c21bba5ac4db32
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaLogging/TerminalLoggers.jl/tarball/f133fab380933d042f6796eda4e130272ba520ca
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaMath/IrrationalConstants.jl/tarball/b2d91fe939cae05960e760110b328288867b5758
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaMath/NaNMath.jl/tarball/9b8215b1ee9e78a293f99797cd31375471b2bcae
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaMath/SpecialFunctions.jl/tarball/5acc6a41b3082920f79ca3c759acbcecf18a8d78
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaNLSolvers/LineSearches.jl/tarball/9ea3422d03222c6de679934d1c08f0a99405aa03
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaNLSolvers/NLSolversBase.jl/tarball/25a6638571a902ecfb1ae2a18fc1575f86b1d4df
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaNLSolvers/NLsolve.jl/tarball/019f12e9a1a7880459d0173c182e6a99365d7ac1
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaObjects/ConstructionBase.jl/tarball/b4b092499347b18a015186eae3042f72267106cb
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaPackaging/JLLWrappers.jl/tarball/0533e564aae234aff59ab625543145446d8b6ec2
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaPackaging/Preferences.jl/tarball/8b770b60760d4451834fe79dd483e318eee709c4
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaPackaging/Requires.jl/tarball/62389eeff14780bfe55195b7204c0d8738436d64
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaParallel/MPI.jl/tarball/8e98d5d80b87403c311fd51e8455d4546ba7a5f8
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaPhysics/Unitful.jl/tarball/57e1b2c9de4bd6f40ecb9de4ac1797b81970d008
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaPlots/Plots.jl/tarball/5c3d09cc4f31f5fc6af001c250bf1278733100ff
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaServices/WorkerUtilities.jl/tarball/cd1659ba0d57b71a464a29e64dbc67cfe83d54e7
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStats/Distances.jl/tarball/c7e3a542b999843086e2f29dac96a618c105be1d
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStats/LogExpFunctions.jl/tarball/13ca9e2586b89836fd20cccf56e57e2b9ae7f38f
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStats/Statistics.jl/tarball/ae3bb1eb3bba077cd276bc5cfc337cc65c3075c0
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStats/StatsAPI.jl/tarball/178ed29fd5b2a2cfc3bd31c13375ae925623ff36
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStats/TimeSeries.jl/tarball/e1235a1906d1e6d27c30c35daa91fcf6fc271f08
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStrings/InlineStrings.jl/tarball/8f3d257792a522b4601c24a577954b0a8cd7334d
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStrings/LaTeXStrings.jl/tarball/dda21b8cbd6a6c40d9d02a73230f9d70fed6918c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStrings/StringEncodings.jl/tarball/b765e46ba27ecf6b44faf70df40c57aa3a547dcb
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaTesting/Aqua.jl/tarball/d57fd255a8932b6509baf43284c416fc44d0b903
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaTesting/ExprTools.jl/tarball/27415f162e6028e81c72b82ef756bf321213b6ec
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/KristofferC/Crayons.jl/tarball/249fe38abf76d48563e2f4556bebd215aa317e15
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/KristofferC/TimerOutputs.jl/tarball/3748bd928e68c7c346b52125cf41fff0de6937d0
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/NREL-Sienna/InfrastructureSystems.jl/tarball/de2372739fb514a610f9d1dd9bc159d3008436b8
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/NREL-Sienna/PowerSystemCaseBuilder.jl/tarball/ab9a5d728e749ec85ced41617ae2014fdda59765
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/SciML/ADTypes.jl/tarball/f7304359109c768cf32dc5fa2d371565bb63b68a
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/jkrumbiegel/Chain.jl/tarball/765487f32aeece2cf28aa7038e29c31060cb5a69
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/joshday/StringTemplates.jl/tarball/d78012ad7c6c22aba229a6363ec83ebc9ce5c135
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/jverzani/Mustache.jl/tarball/3cbd5dda543bc59f2e482607ccf84b633724fc32
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/jw3126/Setfield.jl/tarball/c5391c6ace3bc430ca630251d02ea9687169ca68
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/nickrobinson251/PowerFlowData.jl/tarball/54d48d25e7d7511bbc8eb0ecff9e32f38c6f267c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/queryverse/DataValueInterfaces.jl/tarball/bfc1187b79289637fa0ef6d4436ebdfe6905cbd6
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/queryverse/IteratorInterfaceExtensions.jl/tarball/a3f24677c21f5bbe9d2a714f95dcd58337fb2856
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/queryverse/TableTraits.jl/tarball/c06b2f539df1c6efa794486abfb6ed2022561a39
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/quinnj/JSON3.jl/tarball/411eccfe8aba0814ffa0fdf4860913ed09c34975
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/rdeits/CommonSubexpressions.jl/tarball/cda2cfaebb4be89c9084adaca7dd7333369715c5
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/rofinn/FilePathsBase.jl/tarball/3bab2c5aa25e7840a4b065805c0cdfc01f3068d2
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/ronisbr/PrettyTables.jl/tarball/568dec03462a2b686e9e6ce37dfd0f5aad3301b1
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/ronisbr/StringManipulation.jl/tarball/d05693d339e37d6ab134c5ab53c29fce5ee5d7d5
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/simonster/Reexport.jl/tarball/45e428421666073eab6f2da5c9d310d99bb12f9b
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • pkg.julialang.org
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg Pkg.test(; test_args=[&#34;test_devices&#34;]) (dns block)
    • Triggering command: /usr/local/julia1.12.5/bin/julia /usr/local/julia1.12.5/bin/julia -C native -J/usr/local/julia1.12.5/lib/julia/sys.so -g1 --code-coverage=none --color=yes --check-bounds=yes --warn-overwrite=yes --depwarn=yes --inline=yes --startup-file=no --track-allocation=none --check-bounds=yes --output-o /home/REDACTED/.julia/compiled/v1.12/PowerSystemCaseBuilder/jl_JuNchc --output-ji /home/REDACTED/.julia/compiled/v1.12/PowerSystemCaseBuilder/jl_RzNsVc --output-incremental=yes --startup-file=no (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

Copilot AI requested a review from m-bossart March 25, 2026 05:04
Comment thread src/models/supplemental_accessors.jl Outdated
# supports_reactive_power overrides for types without controllable reactive power
supports_reactive_power(::InterconnectingConverter) = false
supports_reactive_power(::FixedAdmittance) = false
supports_reactive_power(::SwitchedAdmittance) = false
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot this device can control reactive power

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in d1d6190. Removed the supports_reactive_power(::SwitchedAdmittance) = false override so it now falls through to the default true.

Comment thread src/models/supplemental_accessors.jl Outdated

function supports_voltage_control(d::SynchronousCondenser)
bustype = get_bustype(get_bus(d))
return !isnothing(bustype) &&
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot the bus can't never be nothing change this check to be based on the bustype only

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in 09b672a. Removed the !isnothing(bustype) guard — now checks only bustype ∈ (ACBusTypes.PV, ACBusTypes.REF, ACBusTypes.SLACK). Also removed the SynchronousCondenser(nothing) test case and added a REF bus test instead.

Copy link
Copy Markdown
Contributor Author

Copilot AI commented Mar 25, 2026

Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • https://api.github.com/repos/FluxML/MacroTools.jl/tarball/1e0228a030642014fe5cfe68c2c0a818f9e3f522
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaArrays/ArrayInterface.jl/tarball/78b3a7a536b4b0a747a0f296ea77091ca0a9f9a3
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaArrays/StaticArraysCore.jl/tarball/6ab403037779dae8c514bad259f32a447262455a
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Blosc_jll.jl/tarball/535c80f1c0847a4c967ea945fca21becc9de1522
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/HDF5_jll.jl/tarball/e94f84da9af7ce9c6be049e9067e511e17ff89ec
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Hwloc_jll.jl/tarball/baaaebd42ed9ee1bd9173cfd56910e55a8622ee1
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Libiconv_jll.jl/tarball/be484f5c92fad0bd8acfef35fe017900b0b73809
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Lz4_jll.jl/tarball/191686b1ac1ea9c89fc52e996ad15d1d241d1e33
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/MPICH_jll.jl/tarball/9341048b9f723f2ae2a72a5269ac2f15f80534dc
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/MPItrampoline_jll.jl/tarball/36c2d142e7d45fb98b5f83925213feb3292ca348
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/MicrosoftMPI_jll.jl/tarball/bc95bf4149bf535c09602e3acdf950d9b4376227
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/OpenMPI_jll.jl/tarball/2f3d05e419b6125ffe06e55784102e99325bdbe2
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/OpenSpecFun_jll.jl/tarball/1346c9208249809840c91b26703912dff463d335
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/SQLite_jll.jl/tarball/0b5f220f90642566b65ba86549d1ee4118ab2579
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/XML2_jll.jl/tarball/80d3930c6347cfce7ccf96bd3bafdf079d9c0390
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Xorg_libpciaccess_jll.jl/tarball/4909eb8f1cbf6bd4b1c30dd18b2ead9019ef2fad
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Zstd_jll.jl/tarball/446b23e73536f84e8037f5dce465e92275f6a308
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/dlfcn_win32_jll.jl/tarball/e141d67ffe550eadfb5af1bdbdaf138031e4805f
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/libaec_jll.jl/tarball/13b760f97c6e753b47df30cb438d4dc3b50df282
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaCollections/AbstractTrees.jl/tarball/2d9c9a55f9c93e8887ad391fbae72f8ef55e1177
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaCollections/DataStructures.jl/tarball/e357641bb3e0638d353c4b29ea0e40ea644066a6
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaCollections/LeftChildRightSiblingTrees.jl/tarball/95ba48564903b43b2462318aa243ee79d81135ff
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaCollections/OrderedCollections.jl/tarball/05868e21324cede2207c6f0f466b4bfef6d5e7ee
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaCollections/SortingAlgorithms.jl/tarball/64d974c2e6fdf07f8155b5b2ca2ffa9069b608d9
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/CSV.jl/tarball/8d8e0b0f350b8e1c91420b5e64e5de774c2f0f4d
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/DataAPI.jl/tarball/abe83f3a2f1b857aac70ef8b269080af17764bbe
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/DataFrames.jl/tarball/d8928e9169ff76c6281f39a659f9bca3a573f24c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/DataFramesMeta.jl/tarball/b0652fb7f3c094cf453bf22e699712a0bed9fc83
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/DelimitedFiles.jl/tarball/9e2f36d3c96a820c678f2f1f1782582fcf685bae
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/InvertedIndices.jl/tarball/6da3c4316095de0f5ee2ebd875df8721e7e0bdbe
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/Missings.jl/tarball/ec4f7fbeab05d7747bdf98eb74d130a2a2ed298d
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/Parsers.jl/tarball/7d2f8f21da5db6a806faf7b9b292296da42b2810
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/PooledArrays.jl/tarball/36d8b4b899628fb92c2749eb488d884a926614d3
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/SentinelArrays.jl/tarball/ebe7e59b37c400f694f52b58c93d26201387da70
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/StructTypes.jl/tarball/159331b30e94d7b11379037feeb9b690950cace8
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/TableMetadataTools.jl/tarball/c0405d3f8189bb9a9755e429c6ea2138fca7e31f
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/Tables.jl/tarball/f2c1efbc8f3a609aadf318094f8fc5204bdaf344
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/WeakRefStrings.jl/tarball/b1be2855ed9ed8eac54e5caff2afcdb442d52c23
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/YAML.jl/tarball/a1c0c7585346251353cddede21f180b96388c403
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDatabases/DBInterface.jl/tarball/a444404b3f94deaa43ca2a58e18153a82695282b
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDatabases/SQLite.jl/tarball/87b47a05946c50f44531b447b1f24968345316a4
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDiff/DiffResults.jl/tarball/782dd5f4561f5d267313f23853baaaa4c52ea621
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDiff/DiffRules.jl/tarball/23163d55f885173722d1e4cf0f6110cdbaf7e272
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDiff/DifferentiationInterface.jl/tarball/7ae99144ea44715402c6c882bfef2adbeadbc4ce
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDiff/FiniteDiff.jl/tarball/9340ca07ca27093ff68418b7558ca37b05f8aeb1
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDiff/ForwardDiff.jl/tarball/cddeab6487248a39dae1a960fff0ac17b2a28888
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDocs/DocStringExtensions.jl/tarball/7442a5dfe1ebb773c29cc2962a8980f47221d76c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaGPU/Adapt.jl/tarball/35ea197a51ce46fcd01c4a44befce0578a1aaeca
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaIO/Blosc.jl/tarball/310b77648d38c223d947ff3f50f511d08690b8d5
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaIO/CodecZlib.jl/tarball/962834c22b66e32aa10f7611c08c8ca4e20749a9
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaIO/HDF5.jl/tarball/d778420e524bcf56066e8c63c7aa315ae7269da2
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaIO/HDF5.jl/tarball/e856eef26cf5bf2b0f95f8f4fc37553c72c8641c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaIO/TranscodingStreams.jl/tarball/0c45878dcfdcfa8480052b6ab162cdd138781742
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaLang/Compat.jl/tarball/9d8a54ce4b17aa5bdce0ea5c34bc5e7c340d16ad
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaLang/PrecompileTools.jl/tarball/07a921781cab75691315adc645096ed5e370cb77
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaLogging/ProgressLogging.jl/tarball/f0803bc1171e455a04124affa9c21bba5ac4db32
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaLogging/TerminalLoggers.jl/tarball/f133fab380933d042f6796eda4e130272ba520ca
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaMath/IrrationalConstants.jl/tarball/b2d91fe939cae05960e760110b328288867b5758
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaMath/NaNMath.jl/tarball/9b8215b1ee9e78a293f99797cd31375471b2bcae
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaMath/SpecialFunctions.jl/tarball/5acc6a41b3082920f79ca3c759acbcecf18a8d78
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaNLSolvers/LineSearches.jl/tarball/9ea3422d03222c6de679934d1c08f0a99405aa03
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaNLSolvers/NLSolversBase.jl/tarball/25a6638571a902ecfb1ae2a18fc1575f86b1d4df
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaNLSolvers/NLsolve.jl/tarball/019f12e9a1a7880459d0173c182e6a99365d7ac1
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaObjects/ConstructionBase.jl/tarball/b4b092499347b18a015186eae3042f72267106cb
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaPackaging/JLLWrappers.jl/tarball/0533e564aae234aff59ab625543145446d8b6ec2
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaPackaging/Preferences.jl/tarball/8b770b60760d4451834fe79dd483e318eee709c4
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaPackaging/Requires.jl/tarball/62389eeff14780bfe55195b7204c0d8738436d64
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaParallel/MPI.jl/tarball/8e98d5d80b87403c311fd51e8455d4546ba7a5f8
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaPhysics/Unitful.jl/tarball/57e1b2c9de4bd6f40ecb9de4ac1797b81970d008
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaPlots/Plots.jl/tarball/5c3d09cc4f31f5fc6af001c250bf1278733100ff
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaServices/WorkerUtilities.jl/tarball/cd1659ba0d57b71a464a29e64dbc67cfe83d54e7
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStats/Distances.jl/tarball/c7e3a542b999843086e2f29dac96a618c105be1d
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStats/LogExpFunctions.jl/tarball/13ca9e2586b89836fd20cccf56e57e2b9ae7f38f
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStats/Statistics.jl/tarball/ae3bb1eb3bba077cd276bc5cfc337cc65c3075c0
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStats/StatsAPI.jl/tarball/178ed29fd5b2a2cfc3bd31c13375ae925623ff36
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStats/TimeSeries.jl/tarball/e1235a1906d1e6d27c30c35daa91fcf6fc271f08
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStrings/InlineStrings.jl/tarball/8f3d257792a522b4601c24a577954b0a8cd7334d
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStrings/LaTeXStrings.jl/tarball/dda21b8cbd6a6c40d9d02a73230f9d70fed6918c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStrings/StringEncodings.jl/tarball/b765e46ba27ecf6b44faf70df40c57aa3a547dcb
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaTesting/Aqua.jl/tarball/d57fd255a8932b6509baf43284c416fc44d0b903
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaTesting/ExprTools.jl/tarball/27415f162e6028e81c72b82ef756bf321213b6ec
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/KristofferC/Crayons.jl/tarball/249fe38abf76d48563e2f4556bebd215aa317e15
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/KristofferC/TimerOutputs.jl/tarball/3748bd928e68c7c346b52125cf41fff0de6937d0
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/NREL-Sienna/InfrastructureSystems.jl/tarball/de2372739fb514a610f9d1dd9bc159d3008436b8
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/NREL-Sienna/PowerSystemCaseBuilder.jl/tarball/ab9a5d728e749ec85ced41617ae2014fdda59765
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/SciML/ADTypes.jl/tarball/f7304359109c768cf32dc5fa2d371565bb63b68a
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/jkrumbiegel/Chain.jl/tarball/765487f32aeece2cf28aa7038e29c31060cb5a69
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/joshday/StringTemplates.jl/tarball/d78012ad7c6c22aba229a6363ec83ebc9ce5c135
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/jverzani/Mustache.jl/tarball/3cbd5dda543bc59f2e482607ccf84b633724fc32
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/jw3126/Setfield.jl/tarball/c5391c6ace3bc430ca630251d02ea9687169ca68
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/nickrobinson251/PowerFlowData.jl/tarball/54d48d25e7d7511bbc8eb0ecff9e32f38c6f267c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/queryverse/DataValueInterfaces.jl/tarball/bfc1187b79289637fa0ef6d4436ebdfe6905cbd6
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/queryverse/IteratorInterfaceExtensions.jl/tarball/a3f24677c21f5bbe9d2a714f95dcd58337fb2856
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/queryverse/TableTraits.jl/tarball/c06b2f539df1c6efa794486abfb6ed2022561a39
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/quinnj/JSON3.jl/tarball/411eccfe8aba0814ffa0fdf4860913ed09c34975
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/rdeits/CommonSubexpressions.jl/tarball/cda2cfaebb4be89c9084adaca7dd7333369715c5
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/rofinn/FilePathsBase.jl/tarball/3bab2c5aa25e7840a4b065805c0cdfc01f3068d2
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/ronisbr/PrettyTables.jl/tarball/568dec03462a2b686e9e6ce37dfd0f5aad3301b1
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/ronisbr/StringManipulation.jl/tarball/d05693d339e37d6ab134c5ab53c29fce5ee5d7d5
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/simonster/Reexport.jl/tarball/45e428421666073eab6f2da5c9d310d99bb12f9b
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • pkg.julialang.org
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (dns block)
    • Triggering command: /usr/local/julia1.12.5/bin/julia /usr/local/julia1.12.5/bin/julia -C native -J/usr/local/julia1.12.5/lib/julia/sys.so -g1 --code-coverage=none --color=yes --check-bounds=yes --warn-overwrite=yes --depwarn=yes --inline=yes --startup-file=no --track-allocation=none --check-bounds=yes --output-o /home/REDACTED/.julia/compiled/v1.12/PowerSystemCaseBuilder/jl_LmIoaz --output-ji /home/REDACTED/.julia/compiled/v1.12/PowerSystemCaseBuilder/jl_DMZs27 --output-incremental=yes --startup-file=no (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

Copilot AI requested a review from jd-lara March 25, 2026 14:04
Copy link
Copy Markdown
Contributor Author

Copilot AI commented Mar 25, 2026

Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • https://api.github.com/repos/FluxML/MacroTools.jl/tarball/1e0228a030642014fe5cfe68c2c0a818f9e3f522
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaArrays/ArrayInterface.jl/tarball/78b3a7a536b4b0a747a0f296ea77091ca0a9f9a3
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaArrays/StaticArraysCore.jl/tarball/6ab403037779dae8c514bad259f32a447262455a
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Blosc_jll.jl/tarball/535c80f1c0847a4c967ea945fca21becc9de1522
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/HDF5_jll.jl/tarball/e94f84da9af7ce9c6be049e9067e511e17ff89ec
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Hwloc_jll.jl/tarball/baaaebd42ed9ee1bd9173cfd56910e55a8622ee1
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Libiconv_jll.jl/tarball/be484f5c92fad0bd8acfef35fe017900b0b73809
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Lz4_jll.jl/tarball/191686b1ac1ea9c89fc52e996ad15d1d241d1e33
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/MPICH_jll.jl/tarball/9341048b9f723f2ae2a72a5269ac2f15f80534dc
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/MPItrampoline_jll.jl/tarball/36c2d142e7d45fb98b5f83925213feb3292ca348
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/MicrosoftMPI_jll.jl/tarball/bc95bf4149bf535c09602e3acdf950d9b4376227
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/OpenMPI_jll.jl/tarball/2f3d05e419b6125ffe06e55784102e99325bdbe2
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/OpenSpecFun_jll.jl/tarball/1346c9208249809840c91b26703912dff463d335
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/SQLite_jll.jl/tarball/0b5f220f90642566b65ba86549d1ee4118ab2579
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/XML2_jll.jl/tarball/80d3930c6347cfce7ccf96bd3bafdf079d9c0390
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Xorg_libpciaccess_jll.jl/tarball/4909eb8f1cbf6bd4b1c30dd18b2ead9019ef2fad
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Zstd_jll.jl/tarball/446b23e73536f84e8037f5dce465e92275f6a308
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/dlfcn_win32_jll.jl/tarball/e141d67ffe550eadfb5af1bdbdaf138031e4805f
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/libaec_jll.jl/tarball/13b760f97c6e753b47df30cb438d4dc3b50df282
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaCollections/AbstractTrees.jl/tarball/2d9c9a55f9c93e8887ad391fbae72f8ef55e1177
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaCollections/DataStructures.jl/tarball/e357641bb3e0638d353c4b29ea0e40ea644066a6
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaCollections/LeftChildRightSiblingTrees.jl/tarball/95ba48564903b43b2462318aa243ee79d81135ff
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaCollections/OrderedCollections.jl/tarball/05868e21324cede2207c6f0f466b4bfef6d5e7ee
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaCollections/SortingAlgorithms.jl/tarball/64d974c2e6fdf07f8155b5b2ca2ffa9069b608d9
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/CSV.jl/tarball/8d8e0b0f350b8e1c91420b5e64e5de774c2f0f4d
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/DataAPI.jl/tarball/abe83f3a2f1b857aac70ef8b269080af17764bbe
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/DataFrames.jl/tarball/d8928e9169ff76c6281f39a659f9bca3a573f24c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/DataFramesMeta.jl/tarball/b0652fb7f3c094cf453bf22e699712a0bed9fc83
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/DelimitedFiles.jl/tarball/9e2f36d3c96a820c678f2f1f1782582fcf685bae
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/InvertedIndices.jl/tarball/6da3c4316095de0f5ee2ebd875df8721e7e0bdbe
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/Missings.jl/tarball/ec4f7fbeab05d7747bdf98eb74d130a2a2ed298d
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/Parsers.jl/tarball/7d2f8f21da5db6a806faf7b9b292296da42b2810
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/PooledArrays.jl/tarball/36d8b4b899628fb92c2749eb488d884a926614d3
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/SentinelArrays.jl/tarball/ebe7e59b37c400f694f52b58c93d26201387da70
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/StructTypes.jl/tarball/159331b30e94d7b11379037feeb9b690950cace8
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/TableMetadataTools.jl/tarball/c0405d3f8189bb9a9755e429c6ea2138fca7e31f
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/Tables.jl/tarball/f2c1efbc8f3a609aadf318094f8fc5204bdaf344
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/WeakRefStrings.jl/tarball/b1be2855ed9ed8eac54e5caff2afcdb442d52c23
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaData/YAML.jl/tarball/a1c0c7585346251353cddede21f180b96388c403
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDatabases/DBInterface.jl/tarball/a444404b3f94deaa43ca2a58e18153a82695282b
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDatabases/SQLite.jl/tarball/87b47a05946c50f44531b447b1f24968345316a4
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDiff/DiffResults.jl/tarball/782dd5f4561f5d267313f23853baaaa4c52ea621
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDiff/DiffRules.jl/tarball/23163d55f885173722d1e4cf0f6110cdbaf7e272
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDiff/DifferentiationInterface.jl/tarball/7ae99144ea44715402c6c882bfef2adbeadbc4ce
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDiff/FiniteDiff.jl/tarball/9340ca07ca27093ff68418b7558ca37b05f8aeb1
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDiff/ForwardDiff.jl/tarball/cddeab6487248a39dae1a960fff0ac17b2a28888
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaDocs/DocStringExtensions.jl/tarball/7442a5dfe1ebb773c29cc2962a8980f47221d76c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaGPU/Adapt.jl/tarball/35ea197a51ce46fcd01c4a44befce0578a1aaeca
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaIO/Blosc.jl/tarball/310b77648d38c223d947ff3f50f511d08690b8d5
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaIO/CodecZlib.jl/tarball/962834c22b66e32aa10f7611c08c8ca4e20749a9
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaIO/HDF5.jl/tarball/d778420e524bcf56066e8c63c7aa315ae7269da2
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaIO/HDF5.jl/tarball/e856eef26cf5bf2b0f95f8f4fc37553c72c8641c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaIO/TranscodingStreams.jl/tarball/0c45878dcfdcfa8480052b6ab162cdd138781742
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaLang/Compat.jl/tarball/9d8a54ce4b17aa5bdce0ea5c34bc5e7c340d16ad
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaLang/PrecompileTools.jl/tarball/07a921781cab75691315adc645096ed5e370cb77
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaLogging/ProgressLogging.jl/tarball/f0803bc1171e455a04124affa9c21bba5ac4db32
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaLogging/TerminalLoggers.jl/tarball/f133fab380933d042f6796eda4e130272ba520ca
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaMath/IrrationalConstants.jl/tarball/b2d91fe939cae05960e760110b328288867b5758
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaMath/NaNMath.jl/tarball/9b8215b1ee9e78a293f99797cd31375471b2bcae
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaMath/SpecialFunctions.jl/tarball/5acc6a41b3082920f79ca3c759acbcecf18a8d78
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaNLSolvers/LineSearches.jl/tarball/9ea3422d03222c6de679934d1c08f0a99405aa03
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaNLSolvers/NLSolversBase.jl/tarball/25a6638571a902ecfb1ae2a18fc1575f86b1d4df
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaNLSolvers/NLsolve.jl/tarball/019f12e9a1a7880459d0173c182e6a99365d7ac1
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaObjects/ConstructionBase.jl/tarball/b4b092499347b18a015186eae3042f72267106cb
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaPackaging/JLLWrappers.jl/tarball/0533e564aae234aff59ab625543145446d8b6ec2
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaPackaging/Preferences.jl/tarball/8b770b60760d4451834fe79dd483e318eee709c4
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaPackaging/Requires.jl/tarball/62389eeff14780bfe55195b7204c0d8738436d64
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaParallel/MPI.jl/tarball/8e98d5d80b87403c311fd51e8455d4546ba7a5f8
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaPhysics/Unitful.jl/tarball/57e1b2c9de4bd6f40ecb9de4ac1797b81970d008
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaPlots/Plots.jl/tarball/5c3d09cc4f31f5fc6af001c250bf1278733100ff
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaServices/WorkerUtilities.jl/tarball/cd1659ba0d57b71a464a29e64dbc67cfe83d54e7
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStats/Distances.jl/tarball/c7e3a542b999843086e2f29dac96a618c105be1d
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStats/LogExpFunctions.jl/tarball/13ca9e2586b89836fd20cccf56e57e2b9ae7f38f
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStats/Statistics.jl/tarball/ae3bb1eb3bba077cd276bc5cfc337cc65c3075c0
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStats/StatsAPI.jl/tarball/178ed29fd5b2a2cfc3bd31c13375ae925623ff36
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStats/TimeSeries.jl/tarball/e1235a1906d1e6d27c30c35daa91fcf6fc271f08
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStrings/InlineStrings.jl/tarball/8f3d257792a522b4601c24a577954b0a8cd7334d
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStrings/LaTeXStrings.jl/tarball/dda21b8cbd6a6c40d9d02a73230f9d70fed6918c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaStrings/StringEncodings.jl/tarball/b765e46ba27ecf6b44faf70df40c57aa3a547dcb
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaTesting/Aqua.jl/tarball/d57fd255a8932b6509baf43284c416fc44d0b903
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/JuliaTesting/ExprTools.jl/tarball/27415f162e6028e81c72b82ef756bf321213b6ec
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/KristofferC/Crayons.jl/tarball/249fe38abf76d48563e2f4556bebd215aa317e15
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/KristofferC/TimerOutputs.jl/tarball/3748bd928e68c7c346b52125cf41fff0de6937d0
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/NREL-Sienna/InfrastructureSystems.jl/tarball/de2372739fb514a610f9d1dd9bc159d3008436b8
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/NREL-Sienna/PowerSystemCaseBuilder.jl/tarball/ab9a5d728e749ec85ced41617ae2014fdda59765
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/SciML/ADTypes.jl/tarball/f7304359109c768cf32dc5fa2d371565bb63b68a
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/jkrumbiegel/Chain.jl/tarball/765487f32aeece2cf28aa7038e29c31060cb5a69
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/joshday/StringTemplates.jl/tarball/d78012ad7c6c22aba229a6363ec83ebc9ce5c135
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/jverzani/Mustache.jl/tarball/3cbd5dda543bc59f2e482607ccf84b633724fc32
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/jw3126/Setfield.jl/tarball/c5391c6ace3bc430ca630251d02ea9687169ca68
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/nickrobinson251/PowerFlowData.jl/tarball/54d48d25e7d7511bbc8eb0ecff9e32f38c6f267c
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/queryverse/DataValueInterfaces.jl/tarball/bfc1187b79289637fa0ef6d4436ebdfe6905cbd6
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/queryverse/IteratorInterfaceExtensions.jl/tarball/a3f24677c21f5bbe9d2a714f95dcd58337fb2856
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/queryverse/TableTraits.jl/tarball/c06b2f539df1c6efa794486abfb6ed2022561a39
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/quinnj/JSON3.jl/tarball/411eccfe8aba0814ffa0fdf4860913ed09c34975
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/rdeits/CommonSubexpressions.jl/tarball/cda2cfaebb4be89c9084adaca7dd7333369715c5
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/rofinn/FilePathsBase.jl/tarball/3bab2c5aa25e7840a4b065805c0cdfc01f3068d2
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/ronisbr/PrettyTables.jl/tarball/568dec03462a2b686e9e6ce37dfd0f5aad3301b1
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/ronisbr/StringManipulation.jl/tarball/d05693d339e37d6ab134c5ab53c29fce5ee5d7d5
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • https://api.github.com/repos/simonster/Reexport.jl/tarball/45e428421666073eab6f2da5c9d310d99bb12f9b
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (http block)
  • pkg.julialang.org
    • Triggering command: /usr/bin/julia julia --project=. -e using Pkg; Pkg.test(; test_args=[&#34;test_devices&#34;]) (dns block)
    • Triggering command: /usr/local/julia1.12.5/bin/julia /usr/local/julia1.12.5/bin/julia -C native -J/usr/local/julia1.12.5/lib/julia/sys.so -g1 --code-coverage=none --color=yes --check-bounds=yes --warn-overwrite=yes --depwarn=yes --inline=yes --startup-file=no --track-allocation=none --check-bounds=yes --output-o /home/REDACTED/.julia/compiled/v1.12/PowerSystemCaseBuilder/jl_4baQAS --output-ji /home/REDACTED/.julia/compiled/v1.12/PowerSystemCaseBuilder/jl_JTFcES --output-incremental=yes --startup-file=no (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

Copy link
Copy Markdown
Contributor

@luke-kiernan luke-kiernan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks fine at a glance. Details fall under power systems engineering stuff, outside my knowledge base. Question: why does the supports_voltage_control for SC depend on the bus type (true for PV/REF)? Also, what's the intended use case (determining bus types)?

@jd-lara jd-lara marked this pull request as ready for review April 20, 2026 14:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Add traits to static injectors about active power, reactive power, voltage control

4 participants