]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
Enable test/py for sandbox in Travis CI
authorStephen Warren <swarren@nvidia.com>
Tue, 9 Feb 2016 01:23:35 +0000 (18:23 -0700)
committerTom Rini <trini@konsulko.com>
Mon, 15 Feb 2016 20:58:27 +0000 (20:58 +0000)
This provides runtime test coverage in Travis, in addition to the existing
build coverage.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Roger Meier <r.meier@siemens.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
Acked-by: Simon Glass <sjg@chromium.org>
.travis.yml

index 8caaeb34553efef4862adf930b64b1128682b05a..18bf2ed4fcdbca85aa30226e986a3ffbc49a37ec 100644 (file)
@@ -16,6 +16,8 @@ addons:
     - bc
     - build-essential
     - libsdl1.2-dev
+    - python
+    - python-virtualenv
 
 cache:
  - apt
@@ -38,6 +40,9 @@ install:
  - echo -e "\n\n[toolchain-alias]\n${BUILDMAN_ALIAS} i386\n" >> ~/.buildman
  - echo -e "${BUILDMAN_ALIAS_ARM} armv5te\n" >> ~/.buildman
  - cat ~/.buildman
+ - virtualenv /tmp/venv
+ - . /tmp/venv/bin/activate
+ - pip install pytest
 
 env:
   global:
@@ -177,5 +182,8 @@ matrix:
     # some statistics about the code base
     - env:
         - TEST_CMD="sloccount ."
+    # test/py
+    - env:
+        - TEST_CMD="./test/py/test.py --bd sandbox --build"
 
 # TODO make it perfect ;-r