Skip to content

Commit 24b7442

Browse files
committed
fix: also remove ref here
1 parent 61434e0 commit 24b7442

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

ansible/tasks/test-image.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,15 @@
101101
sed -i "/'pg_graphql',/d" /tmp/unit-tests/unit-test-01.sql
102102
when: is_psql_oriole
103103
become: yes
104-
104+
105+
- name: Remove graphql schema test
106+
lineinfile:
107+
path: /tmp/migrations/tests/databases/exists.sql
108+
regexp: "^SELECT has_schema\\('graphql'\\);$"
109+
state: absent
110+
become: yes
111+
when: is_psql_oriole
112+
105113
- name: Run Unit tests (with filename unit-test-*) on Postgres Database
106114
shell: /usr/bin/pg_prove -U postgres -h localhost -d postgres -v /tmp/unit-tests/unit-test-*.sql
107115
register: retval

0 commit comments

Comments
 (0)