Skip to content

Commit ff9e25f

Browse files
committed
test: fix integration output
1 parent 8883924 commit ff9e25f

1 file changed

Lines changed: 47 additions & 47 deletions

File tree

mise.toml

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -278,76 +278,75 @@ description = "Runs integration test/s"
278278
run = """
279279
set -e
280280
281-
# echo
282-
# echo '###############################################'
283-
# echo '# Preflight'
284-
# echo '###############################################'
285-
# echo
281+
echo
282+
echo '###############################################'
283+
echo '# Preflight'
284+
echo '###############################################'
285+
echo
286286
287287
# Ensure Postgres instances are running
288288
mise run test:integration:preflight
289289
290-
# echo
291-
# echo '###############################################'
292-
# echo '# Test: unconfigured proxy'
293-
# echo '###############################################'
294-
# echo
290+
echo
291+
echo '###############################################'
292+
echo '# Test: unconfigured proxy'
293+
echo '###############################################'
294+
echo
295295
296296
mise --env tcp run postgres:eql:teardown
297297
mise --env tcp run proxy:up proxy --extra-args "--detach --wait"
298298
mise --env tcp run test:wait_for_postgres_to_quack --port 6432 --max-retries 20
299299
mise --env tcp run test:integration:psql-passthrough
300300
mise --env tcp run proxy:down
301301
302-
# echo
303-
# echo '###############################################'
304-
# echo '# Setup'
305-
# echo '###############################################'
306-
# echo
302+
echo
303+
echo '###############################################'
304+
echo '# Setup'
305+
echo '###############################################'
306+
echo
307307
308-
# # Ensure EQL is set up before we try and start Proxy
308+
# Ensure EQL is set up before we try and start Proxy
309309
mise --env tcp run postgres:setup
310310
mise --env tls run postgres:setup
311311
312-
# echo
313-
# echo '###############################################'
314-
# echo '# Test: Prometheus'
315-
# echo '###############################################'
316-
# echo
312+
echo
313+
echo '###############################################'
314+
echo '# Test: Prometheus'
315+
echo '###############################################'
316+
echo
317317
318318
mise --env tcp run proxy:up proxy --extra-args "--detach --wait"
319319
mise --env tcp run test:wait_for_postgres_to_quack --port 6432 --max-retries 20
320320
mise --env tcp run test:integration:prometheus
321321
mise --env tcp run proxy:down
322322
323-
# echo
324-
# echo '###############################################'
325-
# echo '# Test: non-TLS'
326-
# echo '###############################################'
327-
# echo
323+
echo
324+
echo '###############################################'
325+
echo '# Test: non-TLS'
326+
echo '###############################################'
327+
echo
328328
329329
mise --env tcp run proxy:up proxy --extra-args "--detach --wait"
330330
mise --env tcp run test:wait_for_postgres_to_quack --port 6432 --max-retries 20
331331
mise --env tcp run test:integration:psql-tcp
332332
mise --env tcp run proxy:down
333333
334-
# echo
335-
# echo '###############################################'
336-
# echo '# Test: TLS'
337-
# echo '###############################################'
338-
# echo
334+
echo
335+
echo '###############################################'
336+
echo '# Test: TLS'
337+
echo '###############################################'
338+
echo
339339
340340
mise --env tls run proxy:up proxy-tls --extra-args "--detach --wait"
341341
mise --env tls run test:wait_for_postgres_to_quack --port 6432 --max-retries 20 --tls
342342
mise --env tls run test:integration:psql-tls
343343
mise --env tls run proxy:down
344344
345-
346-
# echo
347-
# echo '###############################################'
348-
# echo '# Test: Integration'
349-
# echo '###############################################'
350-
# echo
345+
echo
346+
echo '###############################################'
347+
echo '# Test: Integration'
348+
echo '###############################################'
349+
echo
351350
352351
mise --env tls run proxy:up proxy-tls --extra-args "--detach --wait"
353352
mise --env tls run test:wait_for_postgres_to_quack --port 6432 --max-retries 20 --tls
@@ -373,23 +372,24 @@ export CS_DEFAULT_KEYSET_ID="{{default_keyset_id}}"
373372
374373
mise --env tls run proxy:down
375374
376-
# echo
377-
# echo '###############################################'
378-
# echo '# Test: Showcase'
379-
# echo '###############################################'
380-
# echo
375+
echo
376+
echo '###############################################'
377+
echo '# Test: Showcase'
378+
echo '###############################################'
379+
echo
381380
mise --env tls run proxy:up proxy-tls --extra-args "--detach --wait"
382381
mise --env tls run test:wait_for_postgres_to_quack --port 6432 --max-retries 20 --tls
383382
RUST_BACKTRACE=full cargo run -p showcase
384383
mise --env tls run proxy:down
385384
386-
# echo
387-
# echo '###############################################'
388-
# echo '# Test: Language-specific integration'
389-
# echo '###############################################'
390-
# echo
385+
echo
386+
echo '###############################################'
387+
echo '# Test: Language-specific integration'
388+
echo '###############################################'
389+
echo
391390
mise run test:integration:lang:golang
392391
mise run test:integration:lang:python
392+
393393
# Commented out pending fix of the root cause of the test flake
394394
# mise run test:integration:lang:elixir
395395
"""

0 commit comments

Comments
 (0)