Logs
Patchset ps-24
REVIEW
nice!
Eric Bower
contrib: add dev script
jolheiser
contrib/dev/README.md
+12
-0
contrib/dev/main.go
+203
-0
fixtures/fixtures.go
+6
-0
nice!
Since you mentioned automated testing, I wonder if we could incorporate this into CI? jolheiser (1): contrib: add dev script contrib/dev/README.md | 12 +++ contrib/dev/main.go | 203 ++++++++++++++++++++++++++++++++++++++++++ fixtures/fixtures.go | 6 ++ 3 files changed, 221 insertions(+) create mode 100644 contrib/dev/README.md create mode 100644 contrib/dev/main.go create mode 100644 fixtures/fixtures.go base-commit: 31fcd4a1f446368c4f1db8427282ee0222962f1f -- 2.45.2
contrib: add dev script
This patch adds a fairly contained dev script that almost doubles as an integration test if you squint hard enough. It runs an isolated instance that we can add more things to, it at least seems handy to me for quickly testing how changes affect e.g. the web UI, RSS feed, etc. Signed-off-by: jolheiser <git@jolheiser.com>
contrib/dev/README.md
link
+12
-0
+12
-0
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
contrib/dev/main.go
link
+203
-0
+203
-0
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
|