Fix test dependency installation

This commit is contained in:
2020-11-13 19:10:05 -07:00
parent 014893271e
commit 4d6a823066
9 changed files with 13 additions and 13 deletions

View File

@@ -1,4 +1,3 @@
src/build-scripts/common-args.hxml
-lib utest
-D test
--main test.TestMain

View File

@@ -1,4 +1,3 @@
src/build-scripts/common-test-args.hxml
-lib hxcpp
-cpp bin/cpp/test
-cmd bash src/build-scripts/cpp/test-cpp.sh

View File

@@ -1,2 +1 @@
src/build-scripts/common-test-args.hxml
--interp

View File

@@ -1,3 +1,2 @@
src/build-scripts/common-test-args.hxml
--js bin/js/test.js
--cmd node bin/js/test.js

View File

@@ -1,4 +1,3 @@
src/build-scripts/common-test-args.hxml
-lib hxnodejs
--js bin/nodejs/test.js
--cmd node bin/nodejs/test.js

View File

@@ -1,7 +1,7 @@
#! /bin/bash
# Travis testing on Xenial
if [ "$(uname)" = "Linux" ]; then
# "python" is supposed to mean Python3 everywhere now, but not in practice
if [ ! -z "$(which python3)" ]; then
python3 bin/py/test.py
else
python bin/py/test.py

View File

@@ -1,3 +1,2 @@
src/build-scripts/common-test-args.hxml
--python bin/py/test.py
--cmd bash src/build-scripts/py/test-py.sh