summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/install.yml23
-rw-r--r--tests/inventory5
-rw-r--r--tests/test.yml12
3 files changed, 0 insertions, 40 deletions
diff --git a/tests/install.yml b/tests/install.yml
deleted file mode 100644
index 03b9360..0000000
--- a/tests/install.yml
+++ /dev/null
@@ -1,23 +0,0 @@
----
-- hosts: localhost
- connection: local
- roles:
- - { name: lae.travis-lxc }
- vars:
- host_quantity: 1
-
-# Run the following within the containers in the inventory
-- hosts: all
- tasks:
- # Solution for avahi-daemon issue from https://github.com/lxc/lxc/issues/25
- - block:
- - name: Install avahi-daemon early on Ubuntu 16 containers
- package:
- name: avahi-daemon
- ignore_errors: True
- - name: Remove nproc from avahi-daemon.conf
- lineinfile:
- dest: /etc/avahi/avahi-daemon.conf
- regexp: "^rlimit-nproc="
- state: absent
- when: "ansible_distribution_release == 'xenial'"
diff --git a/tests/inventory b/tests/inventory
deleted file mode 100644
index e45e40f..0000000
--- a/tests/inventory
+++ /dev/null
@@ -1,5 +0,0 @@
-[cuda]
-test01.lxc
-
-[cuda:vars]
-ansible_ssh_user=root
diff --git a/tests/test.yml b/tests/test.yml
deleted file mode 100644
index 5125bda..0000000
--- a/tests/test.yml
+++ /dev/null
@@ -1,12 +0,0 @@
----
-- hosts: all
- become: True
- roles:
- - ansible-role-cuda
- vars:
- - gpu: True
- - cuda_restart_node_on_install: False
- - cuda_init: True
- - cuda_init_restart_service: False
-
-# vim:ft=ansible: