Commit 6b714480 authored by Alain Takoudjou's avatar Alain Takoudjou

beremiz-ide: include missing bash tests to nxdtest

bash tests files (*..bash) was not included to nxdtest.
parent a93e5d87
......@@ -23,7 +23,7 @@ md5sum = 200de2b44431c0e4154227b333f27342
[template-instance-beremiz-test]
filename = instance-beremiz-test.cfg.jinja2.in
md5sum = 0ada07a808a644e3d24b7dc9e7db74b0
md5sum = 2d6d892d1cc4a09c598fa14c721069b6
[template-fluxbox-menu.in]
filename = fluxbox-menu.in
......
......@@ -31,6 +31,7 @@ environment =
# Add openssl needed to build matiec during tests
inline +=
export OPENSSL_ROOT_DIR={{ openssl_location }}
export LDFLAGS=-L{{ openssl_location }}/lib
export TESSDATAPATH={{ tesseract_data }}
[runTestSuite]
......
......@@ -87,6 +87,7 @@ eggs =
${beremiz-setup:egg}
opcua
msgpack
click
[python-interpreter]
eggs +=
......@@ -208,3 +209,4 @@ futures = 3.3.0
trollius = 2.2.1
pathlib = 1.0.1
ddt = 1.4.4
click = 7.1.2
......@@ -45,8 +45,10 @@ inline =
#!/bin/sh -e
cd ${beremiz-repository:location}/tests/ide_tests/
testlist=$(ls -d *.sikuli)
cd ${beremiz-repository:location}/tests/cli_tests/
clitestlist=$(ls -d *.bash)
rm -f ${:nxdtest}
for test in $testlist; do
for test in $(echo $testlist $clitestlist); do
if [ -z "$test" ]; then
continue;
fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment