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

Commit ed556bd

Browse files
committed
Temporarily isolate scala system tests.
(c) Copyright IBM Corp. 2016
1 parent 1dda6b0 commit ed556bd

File tree

6 files changed

+7
-15
lines changed

6 files changed

+7
-15
lines changed

Makefile

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -364,16 +364,9 @@ docs: .watch-docs dist/docs
364364
all: BASEURL?=http://192.168.99.100:9500
365365
all: BROWSER_LIST?=chrome
366366
all: init
367-
$(MAKE) test-js-remote
368-
$(MAKE) test-py
369-
PYTHON=python2 $(MAKE) test-py
370-
$(MAKE) test-scala
371367
$(MAKE) sdist
372368
$(MAKE) install
373-
PYTHON=python2 $(MAKE) install
374369
@BASEURL=$(BASEURL) BROWSER_LIST="$(BROWSER_LIST)" $(MAKE) system-test
375-
@BASEURL=$(BASEURL) BROWSER_LIST="$(BROWSER_LIST)" PYTHON=python2 $(MAKE) system-test
376-
$(MAKE) dist/docs
377370

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

etc/notebooks/tests/Walkthrough-Scala.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -413,9 +413,9 @@
413413
],
414414
"metadata": {
415415
"kernelspec": {
416-
"display_name": "Apache Toree (Scala 2.10.4)",
417-
"language": "scala",
418-
"name": "scala"
416+
"display_name": "Apache_Toree",
417+
"language": "",
418+
"name": "apache_toree"
419419
},
420420
"language_info": {
421421
"name": "scala"

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)