File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed
Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 77# "./tests/mise.tls.toml",
88# ]
99[task_config ]
10- includes = [" tasks" ]
11-
10+ includes = [
11+ " tasks" ,
12+ " tasks/postgres.toml"
13+ ]
1214
1315[env ]
1416# Default configuration for running cipherstash-proxy out of the box
Original file line number Diff line number Diff line change 1+ ["postgres:down" ]
2+ description = " Tear down Postgres containers"
3+ dir = " {{config_root}}/tests"
4+ run = " docker compose down"
5+
6+ ["postgres:up" ]
7+ description = " Run Postgres instances with docker compose"
8+ dir = " {{config_root}}/tests"
9+ run = """
10+ {% set default_service = "postgres-" ~ get_env(name="POSTGRES_VERSION",default="17") %}
11+ echo docker compose up {{arg(name="service",default=default_service)}} {{option(name="extra-args",default="")}} | bash
12+ """
You can’t perform that action at this time.
0 commit comments