Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Merging JS and Python binding code - Part 2 #389

Merged
merged 12 commits into from
Jan 23, 2019
Prev Previous commit
Next Next commit
Revert "print in background so travis doesnt complain"
This reverts commit 526b087.
  • Loading branch information
timkpaine committed Jan 20, 2019
commit b3ce427cf223e492437bad4ffa5a01e9dcf3530d
2 changes: 1 addition & 1 deletion scripts/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ try {
} else {
if (args.indexOf("--quiet") > -1) {
console.log("-- Running test suite in quiet mode");
execSync(`p=1; while [ $p -eq 1 ] ; do printf "." && sleep 5; done & output=$(${jest()}); ret=$?; p=0; echo "\${output}"; exit $ret`, {stdio: "inherit"});
execSync(`output=$(${jest()}); ret=$?; echo "\${output}"; exit $ret`, {stdio: "inherit"});
} else if (process.env.PACKAGE) {
console.log("-- Running test suite in individual mode");
let cmd = "node_modules/.bin/lerna exec --concurrency 1 --no-bail";
Expand Down