Remove the tests folder
Using the test suite from rhel instead
This commit is contained in:
parent
1b5c09a0f2
commit
9a8ea3ff14
2
tests/.gitignore
vendored
2
tests/.gitignore
vendored
@ -1,2 +0,0 @@
|
||||
*.swp
|
||||
*.retry
|
@ -1,11 +0,0 @@
|
||||
#!/bin/sh
|
||||
set -ex
|
||||
|
||||
# exercise installed gzip/gunzip programs
|
||||
echo "Bla" > bla.file
|
||||
cp bla.file bla.file.orig
|
||||
gzip bla.file
|
||||
gunzip bla.file.gz
|
||||
cmp bla.file bla.file.orig
|
||||
echo "hi"
|
||||
rm bla.file bla.file.orig
|
@ -1,32 +0,0 @@
|
||||
---
|
||||
- hosts: localhost
|
||||
vars:
|
||||
- artifacts: ./artifacts
|
||||
tags:
|
||||
- atomic
|
||||
- classic
|
||||
- container
|
||||
remote_user: root
|
||||
tasks:
|
||||
- name: Create the folder where we will store the tests
|
||||
action: file state=directory path={{ item }}
|
||||
owner=root group=root
|
||||
with_items:
|
||||
- /usr/local/bin
|
||||
|
||||
- name: Install the test files
|
||||
copy: src={{ item.file }} dest=/usr/local/bin/{{ item.dest }}
|
||||
mode=0755
|
||||
with_items:
|
||||
- {file: test-simple, dest: test-simple }
|
||||
|
||||
- block:
|
||||
- name: Execute the tests
|
||||
shell: exec > /tmp/test.log && /usr/local/bin/test-simple 2>&1
|
||||
|
||||
- always:
|
||||
- name: Pull out the logs
|
||||
fetch:
|
||||
dest: "{{ artifacts }}/"
|
||||
src: "/tmp/test.log"
|
||||
flat: yes
|
@ -1 +0,0 @@
|
||||
- include: test_simple.yml
|
Loading…
Reference in New Issue
Block a user