We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61434e0 commit 24b7442Copy full SHA for 24b7442
ansible/tasks/test-image.yml
@@ -101,7 +101,15 @@
101
sed -i "/'pg_graphql',/d" /tmp/unit-tests/unit-test-01.sql
102
when: is_psql_oriole
103
become: yes
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
113
- name: Run Unit tests (with filename unit-test-*) on Postgres Database
114
shell: /usr/bin/pg_prove -U postgres -h localhost -d postgres -v /tmp/unit-tests/unit-test-*.sql
115
register: retval
0 commit comments