mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Publish XML Test results and publish @next
Modify the AndroidManifest file in the app dir to fix the HTTP tests Pull the test results in XML format and publish them as artifacts Have the test-results checks as a single command Parametrize AVD version; Use the package version, retrieved from package.json for builds and runs Make the package name a variable Fix test crash detection according to the time taken Move all travis-related scripts under the build dir
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
#!/usr/bin/env node
|
||||
var fsModule = require('fs');
|
||||
var resultsFile = 'TestRunResult.txt';
|
||||
var successMarker ='=== ALL TESTS COMPLETE ===';
|
||||
var passMarker = /=== ALL TESTS COMPLETE ===\s+[^\n]*OK,\s+0\s+failed/mg;
|
||||
var successMarker = /=== ALL TESTS COMPLETE for \d+ ms ===/;
|
||||
var passMarker = /=== ALL TESTS COMPLETE for \d+ ms ===\s+[^\n]*OK,\s+0\s+failed/mg;
|
||||
|
||||
var messages = {
|
||||
crash: 'TEST RUN CRASHED!',
|
||||
@@ -13,7 +13,7 @@ var messages = {
|
||||
|
||||
var results = fsModule.readFileSync(resultsFile, 'utf-8');
|
||||
|
||||
if (results.indexOf(successMarker) == -1) {
|
||||
if (!results.match(successMarker)) {
|
||||
console.log(messages.crash);
|
||||
process.exit(1);
|
||||
} else if (results.match(passMarker)) {
|
||||
|
||||
Reference in New Issue
Block a user