@@ -278,76 +278,75 @@ description = "Runs integration test/s"
278278run = """
279279set -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
288288mise 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
296296mise --env tcp run postgres:eql:teardown
297297mise --env tcp run proxy:up proxy --extra-args "--detach --wait"
298298mise --env tcp run test:wait_for_postgres_to_quack --port 6432 --max-retries 20
299299mise --env tcp run test:integration:psql-passthrough
300300mise --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
309309mise --env tcp run postgres:setup
310310mise --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
318318mise --env tcp run proxy:up proxy --extra-args "--detach --wait"
319319mise --env tcp run test:wait_for_postgres_to_quack --port 6432 --max-retries 20
320320mise --env tcp run test:integration:prometheus
321321mise --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
329329mise --env tcp run proxy:up proxy --extra-args "--detach --wait"
330330mise --env tcp run test:wait_for_postgres_to_quack --port 6432 --max-retries 20
331331mise --env tcp run test:integration:psql-tcp
332332mise --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
340340mise --env tls run proxy:up proxy-tls --extra-args "--detach --wait"
341341mise --env tls run test:wait_for_postgres_to_quack --port 6432 --max-retries 20 --tls
342342mise --env tls run test:integration:psql-tls
343343mise --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
352351mise --env tls run proxy:up proxy-tls --extra-args "--detach --wait"
353352mise --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
374373mise --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
381380mise --env tls run proxy:up proxy-tls --extra-args "--detach --wait"
382381mise --env tls run test:wait_for_postgres_to_quack --port 6432 --max-retries 20 --tls
383382RUST_BACKTRACE=full cargo run -p showcase
384383mise --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
391390mise run test:integration:lang:golang
392391mise 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