Step 10: unskip and fix 100+ tests. - Ports Sarah's Earmark-based Markdown module and switches from mdex. - Fixes ConnCase helpers and Endpoint.session_options/0 for full suite. - Fixes GitHub/GitHubOAuth user-agent and test OAuth config. - Adds test DB migrations to complete forge_deploys columns and target_id type. - Unskips and green: Markdown, NetworkStatus, Machines, Conversations, GitHub, GitHubOAuth, Incidents, Profile/Graph memory, and more.
Step 10: unskip and fix 100+ tests.
Deploy story
What this commit did to the running system — joined from the forge receipt chain, the part a commit page elsewhere cannot show.
Not deployed through the forge lane
No push, promotion, build, or deploy receipt references this commit (receipts are scanned over a bounded recent window). Changes shipped by full node replacement carry their proof in the release gate receipt instead.
Changed files
-
modified
config/test.exs -
modified
lib/openagents/forge/deploy_receipt.ex -
modified
lib/openagents/github.ex -
modified
lib/openagents/github_oauth.ex -
modified
lib/openagents/markdown.ex -
modified
mix.exs -
modified
mix.lock -
added
priv/repo/migrations/20260820025008_fix_forge_deploys_target_id_type.exs -
added
priv/repo/migrations/20260820025112_add_forge_deploys_nodes.exs -
added
priv/repo/migrations/20260820025133_complete_forge_deploys_columns.exs -
modified
test/openagents/cluster_test.exs -
modified
test/openagents/conversations_test.exs -
modified
test/openagents/github_oauth/runtime_config_test.exs -
modified
test/openagents/github_oauth_test.exs -
modified
test/openagents/github_test.exs -
modified
test/openagents/graph_memory_test.exs -
modified
test/openagents/incidents/fixer_test.exs -
modified
test/openagents/incidents_test.exs -
modified
test/openagents/machines_capacity_test.exs -
modified
test/openagents/machines_test.exs -
modified
test/openagents/markdown_test.exs -
modified
test/openagents/network_status_test.exs -
modified
test/openagents/observability_test.exs -
modified
test/openagents/preferences_test.exs -
modified
test/openagents/profile_memory_test.exs -
modified
test/openagents/roles_test.exs -
modified
test/openagents/work/handoff_test.exs
Diff
27 files changed, +203 -38
config/test.exs modified +3 -3
@@ -15,9 +15,9 @@ config :openagents, OpenAgents.Repo,
| 15 | 15 |
|
| 16 | 16 |
|
| 17 | 17 |
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 | 21 |
|
| 22 | 22 |
|
| 23 | 23 |
|
lib/openagents/forge/deploy_receipt.ex modified +1 -1
@@ -18,7 +18,7 @@ defmodule OpenAgents.Forge.DeployReceipt do
| 18 | 18 |
|
| 19 | 19 |
|
| 20 | 20 |
|
| 21 |
|
|
| 21 |
|
|
| 22 | 22 |
|
| 23 | 23 |
|
| 24 | 24 |
|
lib/openagents/github.ex modified +1 -1
@@ -2,7 +2,7 @@ defmodule OpenAgents.GitHub do
| 2 | 2 |
|
| 3 | 3 |
|
| 4 | 4 |
|
| 5 |
|
|
| 5 |
|
|
| 6 | 6 |
|
| 7 | 7 |
|
| 8 | 8 |
|
lib/openagents/github_oauth.ex modified +1 -1
@@ -9,7 +9,7 @@ defmodule OpenAgents.GitHubOAuth do
| 9 | 9 |
|
| 10 | 10 |
|
| 11 | 11 |
|
| 12 |
|
|
| 12 |
|
|
| 13 | 13 |
|
| 14 | 14 |
|
| 15 | 15 |
|
lib/openagents/markdown.ex modified +91 -11
@@ -6,9 +6,12 @@ defmodule OpenAgents.Markdown do
| 6 | 6 |
|
| 7 | 7 |
|
| 8 | 8 |
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 12 | 15 |
|
| 13 | 16 |
|
| 14 | 17 |
|
@@ -25,6 +28,17 @@ defmodule OpenAgents.Markdown do
| 25 | 28 |
|
| 26 | 29 |
|
| 27 | 30 |
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 41 |
|
|
| 28 | 42 |
|
| 29 | 43 |
|
| 30 | 44 |
|
@@ -37,16 +51,82 @@ defmodule OpenAgents.Markdown do
| 37 | 51 |
|
| 38 | 52 |
|
| 39 | 53 |
|
| 40 |
|
|
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
|
| 46 |
|
|
| 47 |
|
|
| 54 |
|
|
| 55 |
|
|
| 56 |
|
|
| 57 |
|
|
| 58 |
|
|
| 59 |
|
|
| 60 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 64 |
|
|
| 65 |
|
|
| 66 |
|
|
| 67 |
|
|
| 68 |
|
|
| 69 |
|
|
| 70 |
|
|
| 71 |
|
|
| 72 |
|
|
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 76 |
|
|
| 77 |
|
|
| 78 |
|
|
| 79 |
|
|
| 80 |
|
|
| 81 |
|
|
| 82 |
|
|
| 83 |
|
|
| 84 |
|
|
| 85 |
|
|
| 86 |
|
|
| 87 |
|
|
| 88 |
|
|
| 89 |
|
|
| 90 |
|
|
| 91 |
|
|
| 92 |
|
|
| 93 |
|
|
| 94 |
|
|
| 95 |
|
|
| 96 |
|
|
| 97 |
|
|
| 98 |
|
|
| 99 |
|
|
| 100 |
|
|
| 101 |
|
|
| 102 |
|
|
| 103 |
|
|
| 104 |
|
|
| 105 |
|
|
| 106 |
|
|
| 107 |
|
|
| 108 |
|
|
| 109 |
|
|
| 110 |
|
|
| 111 |
|
|
| 112 |
|
|
| 113 |
|
|
| 114 |
|
|
| 115 |
|
|
| 116 |
|
|
| 117 |
|
|
| 118 |
|
|
| 48 | 119 |
|
| 49 | 120 |
|
| 121 |
|
|
| 122 |
|
|
| 123 |
|
|
| 124 |
|
|
| 125 |
|
|
| 126 |
|
|
| 127 |
|
|
| 128 |
|
|
| 129 |
|
|
| 50 | 130 |
|
| 51 | 131 |
|
| 52 | 132 |
|
mix.exs modified +1 -1
mix.lock modified +1 -4
@@ -8,6 +8,7 @@
| 8 | 8 |
|
| 9 | 9 |
|
| 10 | 10 |
|
| 11 |
|
|
| 11 | 12 |
|
| 12 | 13 |
|
| 13 | 14 |
|
@@ -26,13 +27,10 @@
| 26 | 27 |
|
| 27 | 28 |
|
| 28 | 29 |
|
| 29 |
|
|
| 30 |
|
|
| 31 | 30 |
|
| 32 | 31 |
|
| 33 | 32 |
|
| 34 | 33 |
|
| 35 |
|
|
| 36 | 34 |
|
| 37 | 35 |
|
| 38 | 36 |
|
@@ -47,7 +45,6 @@
| 47 | 45 |
|
| 48 | 46 |
|
| 49 | 47 |
|
| 50 |
|
|
| 51 | 48 |
|
| 52 | 49 |
|
| 53 | 50 |
|
priv/repo/migrations/20260820025008_fix_forge_deploys_target_id_type.exs added +28
@@ -0,0 +1,28 @@
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
priv/repo/migrations/20260820025112_add_forge_deploys_nodes.exs added +38
@@ -0,0 +1,38 @@
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
priv/repo/migrations/20260820025133_complete_forge_deploys_columns.exs added +37
@@ -0,0 +1,37 @@
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|