Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
cleaning up saucelabs in preparation for the release
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher McCulloh committed Sep 15, 2016
1 parent e16bcd9 commit c999e62
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 116 deletions.
3 changes: 3 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
- [ ] Update dependencies to latest version as appropriate
- [ ] Test
- [ ] `grunt test`
- [ ] `grunt saucelabs` Best to find out if they pass or not now as opposed to in the middle of a release.
* If some environments fail, you can comment out the passing environments temporarily in `sauce_browsers.yml` while you debug
* If some environments fail, start your server with `grunt servefast` and use Browserstack to investigate.
- [ ] Generate test distribution package for use on the Fuel UX Site
- [ ] `grunt dist`
- [ ] Copy the created `dist/` directory to the fuelux-site project, replacing `node_modules/fuelux/dist/`
Expand Down
13 changes: 0 additions & 13 deletions grunt/config/saucelabs-qunit.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,6 @@ module.exports = function (grunt) {
}

return {
trickyBrowsers: {
options: {
username: '<%= sauceUser %>',
key: '<%= sauceKey %>',
tunnelTimeout: 45,
testInterval: 3000,
tags: ['<%= sauceUser %>' + '@' + process.env.TRAVIS_BRANCH || '<%= sauceUser %>' + '@local'],
browsers: grunt.file.readYAML('sauce_browsers_tricky.yml'),
build: process.env.TRAVIS_BUILD_NUMBER || getPackage().version,
testname: process.env.TRAVIS_JOB_ID || Math.floor((new Date()).getTime() / 1000 - 1230768000).toString(),
urls: ['http://localhost:<%= connect.testServer.options.port %>/test/?testdist=true&hidepassed']
}
},
defaultBrowsers: {
options: {
username: '<%= sauceUser %>',
Expand Down
4 changes: 0 additions & 4 deletions grunt/tasks/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ module.exports = function(grunt) {
grunt.registerTask('saucelabs', 'run jshint, and qunit on saucelabs',
['connect:testServer', 'jshint', 'saucelabs-qunit:defaultBrowsers']);

// can be run locally instead of through TravisCI, but requires the FuelUX Saucelabs API key file which is not public at this time.
grunt.registerTask('trickysauce', 'run tests, jshint, and qunit for "tricky browsers" (IE8-11)',
['connect:testServer', 'jshint', 'saucelabs-qunit:trickyBrowsers']);

// Travis CI task. This task no longer uses SauceLabs. Please run 'grunt saucelabs' manually.
grunt.registerTask('travisci', 'Tests to run when in Travis CI environment',
['test', 'dist', 'browserify:commonjs', 'qunit:dist']);
Expand Down
14 changes: 3 additions & 11 deletions sauce_browsers.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[
# Docs: https://saucelabs.com/docs/platforms/webdriver

# If you are having trouble with a particular test, you can comment the others out to test just it

{
browserName: "safari",
platform: "OS X 10.9"
Expand Down Expand Up @@ -32,12 +34,7 @@
platform: "Windows 7"
},

# Not Supported by MC
# {
# browserName: "internet explorer",
# version: "8",
# platform: "Windows 7"
# },
# Windows 7, IE 8 Not Supported by MC

{
browserName: "chrome",
Expand Down Expand Up @@ -70,9 +67,4 @@

# Android Chrome not currently supported by Sauce Labs

# { # Android Browser (super-unofficial)
# browserName: "android",
# version: "4.0",
# platform: "Linux"
# }
]
88 changes: 0 additions & 88 deletions sauce_browsers_tricky.yml

This file was deleted.

0 comments on commit c999e62

Please sign in to comment.