Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit ff70ae5

Browse files
committed
Temporarily isolate scala system tests.
(c) Copyright IBM Corp. 2016
1 parent 9579d40 commit ff70ae5

5 files changed

+4
-12
lines changed

Makefile

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -358,16 +358,9 @@ docs: .watch-docs dist/docs
358358
all: BASEURL?=http://192.168.99.100:9500
359359
all: BROWSER_LIST?=chrome
360360
all: init
361-
$(MAKE) test-js-remote
362-
$(MAKE) test-py
363-
PYTHON=python2 $(MAKE) test-py
364-
$(MAKE) test-scala
365361
$(MAKE) sdist
366362
$(MAKE) install
367-
PYTHON=python2 $(MAKE) install
368363
@BASEURL=$(BASEURL) BROWSER_LIST="$(BROWSER_LIST)" $(MAKE) system-test
369-
@BASEURL=$(BASEURL) BROWSER_LIST="$(BROWSER_LIST)" PYTHON=python2 $(MAKE) system-test
370-
$(MAKE) dist/docs
371364

372365
release: EXTRA_OPTIONS=-e PYPI_USER=$(PYPI_USER) -e PYPI_PASSWORD=$(PYPI_PASSWORD)
373366
release: SETUP_CMD=echo "[server-login]" > ~/.pypirc; echo "username:" ${PYPI_USER} >> ~/.pypirc; echo "password:" ${PYPI_PASSWORD} >> ~/.pypirc;

system-test/urth-core-bind-specs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var wd = require('wd');
55
var Boilerplate = require('./utils/boilerplate');
66
var boilerplate = new Boilerplate();
77

8-
describe('Urth Core Bind', function() {
8+
false && describe('Urth Core Bind', function() {
99

1010
boilerplate.setup(this.title, '/notebooks/tests/urth-core-bind.ipynb', 3);
1111

system-test/urth-r-widgets-specs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var wd = require('wd');
55
var Boilerplate = require('./utils/boilerplate');
66
var boilerplate = new Boilerplate();
77

8-
process.env.PYTHON != "python2" && describe('Widgets R System Test', function() {
8+
false && process.env.PYTHON != "python2" && describe('Widgets R System Test', function() {
99
boilerplate.setup(this.title, '/notebooks/tests/urth-r-widgets.ipynb', 7);
1010

1111
it('should print the result of a Function Widget invocation', function(done) {

system-test/urth-system-test-specs.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var wd = require('wd');
55
var Boilerplate = require('./utils/boilerplate');
66
var boilerplate = new Boilerplate();
77

8-
describe('Widgets Python System Test', function() {
8+
false && describe('Widgets Python System Test', function() {
99
boilerplate.setup(this.title, '/notebooks/tests/Walkthrough.ipynb', 8);
1010

1111
it('should print the correct variable that is used for urth-core-function', function(done) {
@@ -78,7 +78,6 @@ process.env.PYTHON != "python2" && describe('Widgets Scala System Test', functio
7878
it('should print the correct variable that is used for urth-core-function', function(done) {
7979

8080
boilerplate.browser
81-
.elementsByCssSelector('div.code_cell').nth(5)
8281
.elementByXPath('//button[text()="invoke"]').click()
8382
.waitForElementById('test1', wd.asserters.textInclude('world'), timeout)
8483
.nodeify(done);

system-test/urth-viz-table-specs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var chai = require('chai');
66
var Boilerplate = require('./utils/boilerplate');
77
var boilerplate = new Boilerplate();
88

9-
describe('Urth Viz Table Test', function() {
9+
false && describe('Urth Viz Table Test', function() {
1010

1111
var tagChaiAssertionError = function(err) {
1212
// throw error and tag as retriable to poll again

0 commit comments

Comments
 (0)