Update .travis.yml and .kitchen.yml files for parallel testing

Change-Id: I51f119ab0ece25e23aa3b6f34e69d446ffededbc
diff --git a/tests/pillar/client.sls b/tests/pillar/client.sls
index 32ee4e2..7f07c78 100644
--- a/tests/pillar/client.sls
+++ b/tests/pillar/client.sls
@@ -1,3 +1,42 @@
 openldap:
   client:
-    enabled: true
+    server:
+      basedn: dc=example,dc=local
+      host: ldap.example.local
+      tls: true
+      port: 389
+      auth:
+        user: cn=admin,dc=example,dc=local
+        password: dummypass
+    entry:
+      people:
+        type: ou
+        classes:
+          - top
+          - organizationalUnit
+        entry:
+          jdoe:
+            type: cn
+            # Change attributes that already exists with different content
+            action: replace
+            # Delete all other attributes
+            purge: true
+            attr:
+              uid: jdoe
+              uidNumber: 20001
+              gidNumber: 20001
+              gecos: John Doe
+              givenName: John
+              sn: Doe
+              homeDirectory: /home/jdoe
+              loginShell: /bin/bash
+            classes:
+              - posixAccount
+              - inetOrgPerson
+              - top
+              - ldapPublicKey
+              - shadowAccount
+          karel:
+            # Simply remove cn=karel
+            type: cn
+            enabled: false
\ No newline at end of file