Skip to content

Commit

Permalink
(#3986) - Split out android tests more
Browse files Browse the repository at this point in the history
  • Loading branch information
daleharvey committed Jun 20, 2015
1 parent 3a8e054 commit 1d98f4b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ env:
- CLIENT="saucelabs:internet explorer:10:Windows 8" COMMAND=test

# split up the android tests as it goes over time
- GREP=test.replication.js CLIENT="saucelabs:Android:5.1:Linux" COMMAND=test
- GREP=test.replication.js INVERT=true CLIENT="saucelabs:Android:5.1:Linux" COMMAND=test
- GREP=suite2 CLIENT="saucelabs:Android:5.1:Linux" COMMAND=test
- GREP=suite2 INVERT=true CLIENT="saucelabs:Android:5.1:Linux" COMMAND=test

- CLIENT=selenium:firefox ADAPTERS=memory COMMAND=test
- CLIENT=selenium:firefox ADAPTERS=idb-alt COMMAND=test
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/test.attachments.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var iconDigests = [
var iconLengths = [1047, 789, 967, 527, 1108];

adapters.forEach(function (adapter) {
describe('test.attachments.js-' + adapter, function () {
describe('suite2 test.attachments.js-' + adapter, function () {

var dbs = {};

Expand Down Expand Up @@ -3123,7 +3123,7 @@ adapters.forEach(function (adapter) {
});

repl_adapters.forEach(function (adapters) {
describe('test.attachments.js- ' + adapters[0] + ':' + adapters[1],
describe('suite2 test.attachments.js- ' + adapters[0] + ':' + adapters[1],
function () {

var dbs = {};
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/test.replication.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if ('saucelabs' in testUtils.params()) {
var downAdapters = ['local'];

adapters.forEach(function (adapters) {
describe('test.replication.js-' + adapters[0] + '-' + adapters[1],
describe('suite2 test.replication.js-' + adapters[0] + '-' + adapters[1],
function () {

var dbs = {};
Expand Down Expand Up @@ -3810,7 +3810,7 @@ adapters.forEach(function (adapters) {
// down
downAdapters.map(function (adapter) {

describe('test.replication.js-down-test', function () {
describe('suite2 test.replication.js-down-test', function () {

var dbs = {};

Expand Down

0 comments on commit 1d98f4b

Please sign in to comment.