From fef0d8070cc505390e219d57a191933a97d3c30b Mon Sep 17 00:00:00 2001 From: Viktor Kovacs Date: Wed, 12 May 2021 20:01:25 +0200 Subject: [PATCH] Run build on travis. --- .travis.yml | 1 + tools/run_python.js | 8 -------- 2 files changed, 1 insertion(+), 8 deletions(-) delete mode 100644 tools/run_python.js diff --git a/.travis.yml b/.travis.yml index 359d0c7..7bbd2d0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,4 +7,5 @@ install: - npm install script: + - npm run build - npm run test diff --git a/tools/run_python.js b/tools/run_python.js deleted file mode 100644 index f773eb3..0000000 --- a/tools/run_python.js +++ /dev/null @@ -1,8 +0,0 @@ -let cp = require ('child_process'); -let pythonExecutable = 'python'; -if (process.platform !== 'win32') { - pythonExecutable = 'python3'; -} -cp.spawnSync (pythonExecutable, process.argv.slice (2), { - stdio: "inherit" -});