From ddc3ed59aa533ed9afcab262c60adb2390026968 Mon Sep 17 00:00:00 2001
From: Jared Hirsch <ohai@6a68.net>
Date: Mon, 13 Aug 2012 16:23:14 -0700
Subject: [PATCH] Add test dirs and configs to gitignore; move test configs to
 *.yaml.example

---
 .gitignore                                |  4 +++
 automation-tests/credentials.yaml         | 37 -----------------------
 automation-tests/credentials.yaml.example |  8 +++++
 3 files changed, 12 insertions(+), 37 deletions(-)
 delete mode 100644 automation-tests/credentials.yaml
 create mode 100644 automation-tests/credentials.yaml.example

diff --git a/.gitignore b/.gitignore
index dd88ea040..1e5320720 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,3 +13,7 @@
 Thumbs.db
 /locale
 /resources/email_templates/email-test.html
+/automation-tests/bid_selenium
+/automation-tests/results
+/automation-tests/credentials.yaml
+/automation-tests/sauce.yaml
diff --git a/automation-tests/credentials.yaml b/automation-tests/credentials.yaml
deleted file mode 100644
index 2ce533315..000000000
--- a/automation-tests/credentials.yaml
+++ /dev/null
@@ -1,37 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-# File contains users data.
-#
-# Each user is a section named with its role
-# and any number of values. At least email,
-# password and name should be present.
-#
-# Example:
-#     admin:
-#         email: email@site.com
-#         password: password
-#         name: Test User
-#
-# Still, you are free to add any more data you wish. It will be kept
-# in the same dictionary.
-#
-# Example:
-#     admin:
-#         email: email@site.com
-#         password: password
-#         name: Test User
-#         username: testuser
-#         some_user_data: data
-#
-# The contents of this file are accessible via the pytest-mozwebqa plugin:
-#
-# Example:
-#   credentials = mozwebqa.credentials['default']
-#   credentials['email']
-
-default:
-    email: <value>
-    password: <value>
-    name: <value>
diff --git a/automation-tests/credentials.yaml.example b/automation-tests/credentials.yaml.example
new file mode 100644
index 000000000..f16a3a942
--- /dev/null
+++ b/automation-tests/credentials.yaml.example
@@ -0,0 +1,8 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+# insert your sauce labs credentials here and save as sauce.yaml
+username: <value>
+password: <value>
+api-key: <value>
-- 
GitLab