Skip to content

Commit a400f45

Browse files
committed
reducing number of runs to 5 to speed up test
1 parent c170a46 commit a400f45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test-python-shell.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ describe('PythonShell', function () {
144144
});
145145
});
146146
it('should run multiple scripts and fail with an extended stack trace for each of them', function (done) {
147-
let numberOfTimesToRun = 20;
147+
let numberOfTimesToRun = 5;
148148
for (let i = 0; i < numberOfTimesToRun; i++) {
149149
runSingleErrorScript(end);
150150
}
@@ -166,7 +166,7 @@ describe('PythonShell', function () {
166166
});
167167

168168
it('should run multiple scripts and return output data for each of them', function (done) {
169-
let numberOfTimesToRun = 20;
169+
let numberOfTimesToRun = 5;
170170
for (let i = 0; i < numberOfTimesToRun; i++) {
171171
runSingleScript(end);
172172
}

0 commit comments

Comments
 (0)