We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5bf0ca commit 5f39ad4Copy full SHA for 5f39ad4
1 file changed
test/test-python-shell.ts
@@ -14,6 +14,10 @@ describe('PythonShell', function () {
14
15
describe('#ctor(script, options)', function () {
16
it('should spawn a Python process', function (done) {
17
+ // spawning python might take a while for the first time
18
+ // after this python should be in memory and not need extra time for startup
19
+ this.timeout(3000)
20
+
21
let pyshell = new PythonShell('exit-code.py');
22
pyshell.command.should.eql(['test' + sep + 'python' + sep + 'exit-code.py']);
23
pyshell.terminated.should.be.false;
0 commit comments