postgresql_copy: move ci tests to a separate target (#62398)
This commit is contained in:
parent
b0668e17ed
commit
98415dec86
6 changed files with 10 additions and 4 deletions
|
@ -1,6 +1,5 @@
|
|||
destructive
|
||||
shippable/posix/group4
|
||||
postgresql_copy
|
||||
postgresql_db
|
||||
postgresql_ext
|
||||
postgresql_idx
|
||||
|
|
|
@ -19,9 +19,6 @@
|
|||
# Test postgresql_set
|
||||
- postgresql_set.yml
|
||||
|
||||
# Test postgresql_copy module
|
||||
- postgresql_copy.yml
|
||||
|
||||
# Test postgresql_slot module.
|
||||
# Physical replication slots are available from PostgreSQL 9.4
|
||||
- postgresql_slot.yml
|
||||
|
|
4
test/integration/targets/postgresql_copy/aliases
Normal file
4
test/integration/targets/postgresql_copy/aliases
Normal file
|
@ -0,0 +1,4 @@
|
|||
destructive
|
||||
shippable/posix/group4
|
||||
postgresql_copy
|
||||
skip/osx
|
3
test/integration/targets/postgresql_copy/meta/main.yml
Normal file
3
test/integration/targets/postgresql_copy/meta/main.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
dependencies:
|
||||
- setup_postgresql_db
|
3
test/integration/targets/postgresql_copy/tasks/main.yml
Normal file
3
test/integration/targets/postgresql_copy/tasks/main.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Initial CI test for postgresql_copy module
|
||||
- import_tasks: postgresql_copy_initial.yml
|
||||
when: postgres_version_resp.stdout is version('9.4', '>=')
|
Loading…
Reference in a new issue