File tree Expand file tree Collapse file tree 3 files changed +1
-22
lines changed Expand file tree Collapse file tree 3 files changed +1
-22
lines changed Original file line number Diff line number Diff line change 153
153
shell :
154
154
cmd : " for fl in /usr/lib/postgresql/bin/* ; do ln -sf $fl /usr/bin/$(basename $fl) ; done"
155
155
156
- - name : Run migrations
157
- import_tasks : tasks/setup-migrations.yml
158
-
159
156
- name : Stop Postgres Database without Systemd
160
157
become : yes
161
158
become_user : postgres
Original file line number Diff line number Diff line change 21
21
shell : /usr/lib/postgresql/bin/psql -U postgres -h localhost -d postgres -c "CREATE extension pgtap";
22
22
when : ebssurrogate_mode
23
23
24
- - name : Create function for testing extensions
25
- shell : /usr/lib/postgresql/bin/psql -U postgres -h localhost -d postgres -f /tmp/unit-tests/test-extensions.sql;
26
- when : ebssurrogate_mode
27
-
28
- - name : Extension Installation tests (Ignore errors temporarily)
29
- shell : /usr/bin/pg_prove -U postgres -h localhost -d postgres -v /tmp/unit-tests/verify-extensions.sql
30
- register : retval
31
- when : ebssurrogate_mode
32
- ignore_errors : yes
33
-
34
24
- name : Run Unit tests (with filename unit-test-*) on Postgres Database
35
25
shell : /usr/bin/pg_prove -U postgres -h localhost -d postgres -v /tmp/unit-tests/unit-test-*.sql
36
26
register : retval
37
27
failed_when : retval.rc != 0
38
28
when : ebssurrogate_mode
39
29
40
- - name : Run migrations tests
41
- shell : /usr/bin/pg_prove -U postgres -h localhost -d postgres -v tests/test.sql
42
- register : retval
43
- failed_when : retval.rc != 0
44
- when : ebssurrogate_mode
45
- args :
46
- chdir : /tmp/migrations
47
-
48
30
- name : Re-enable PG Sodium references in config
49
31
become : yes
50
32
become_user : postgres
Original file line number Diff line number Diff line change 1
- postgres-version = " 14.1.0.86 "
1
+ postgres-version = " 14.1.0.87 "
You can’t perform that action at this time.
0 commit comments