diff mbox

[U-Boot,2/2] Enable test/py for sandbox in Travis CI

Message ID 1454981015-21619-2-git-send-email-swarren@wwwdotorg.org
State Accepted
Commit 07bf2122df36732dd9591db3358f850a666fc6cb
Delegated to: Tom Rini
Headers show

Commit Message

Stephen Warren Feb. 9, 2016, 1:23 a.m. UTC
From: Stephen Warren <swarren@nvidia.com>

This provides runtime test coverage in Travis, in addition to the existing
build coverage.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
 .travis.yml | 8 ++++++++
 1 file changed, 8 insertions(+)

Comments

Meier, Roger Feb. 9, 2016, 12:13 p.m. UTC | #1
Thanks Stephen

> -----Original Message-----
> From: Stephen Warren [mailto:swarren@wwwdotorg.org]
> Sent: Dienstag, 9. Februar 2016 02:24
> To: Tom Rini <trini@konsulko.com>
> Cc: Simon Glass <sjg@chromium.org>; u-boot@lists.denx.de; Meier, Roger
> <r.meier@siemens.com>; Daniel Schwierzeck
> <daniel.schwierzeck@gmail.com>; Heiko Schocher <hs@denx.de>; Stephen
> Warren <swarren@nvidia.com>
> Subject: [PATCH 2/2] Enable test/py for sandbox in Travis CI
> 
> From: Stephen Warren <swarren@nvidia.com>
> 
> This provides runtime test coverage in Travis, in addition to the existing
> build coverage.
> 
> Signed-off-by: Stephen Warren <swarren@nvidia.com>
> ---
>  .travis.yml | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/.travis.yml b/.travis.yml
> index 8caaeb34553e..18bf2ed4fcdb 100644
> --- a/.travis.yml
> +++ b/.travis.yml
> @@ -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
> --
> 2.7.0

Reviewed-by: Roger Meier <r.meier@siemens.com>


Best Regards
Roger
Heiko Schocher Feb. 11, 2016, 5:41 a.m. UTC | #2
Hello Stephen,

Am 09.02.2016 um 02:23 schrieb Stephen Warren:
> From: Stephen Warren <swarren@nvidia.com>
>
> This provides runtime test coverage in Travis, in addition to the existing
> build coverage.
>
> Signed-off-by: Stephen Warren <swarren@nvidia.com>
> ---
>   .travis.yml | 8 ++++++++
>   1 file changed, 8 insertions(+)

Very nice, thanks!

Reviewed-by: Heiko Schocher <hs@denx.de>

bye,
Heiko
>
> diff --git a/.travis.yml b/.travis.yml
> index 8caaeb34553e..18bf2ed4fcdb 100644
> --- a/.travis.yml
> +++ b/.travis.yml
> @@ -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
>
Simon Glass Feb. 15, 2016, 1:19 a.m. UTC | #3
On 10 February 2016 at 22:41, Heiko Schocher <hs@denx.de> wrote:
> Hello Stephen,
>
> Am 09.02.2016 um 02:23 schrieb Stephen Warren:
>>
>> From: Stephen Warren <swarren@nvidia.com>
>>
>> This provides runtime test coverage in Travis, in addition to the existing
>> build coverage.
>>
>> Signed-off-by: Stephen Warren <swarren@nvidia.com>
>> ---
>>   .travis.yml | 8 ++++++++
>>   1 file changed, 8 insertions(+)
>
>
> Very nice, thanks!
>
> Reviewed-by: Heiko Schocher <hs@denx.de>
>
> bye,
> Heiko
>
>>
>> diff --git a/.travis.yml b/.travis.yml
>> index 8caaeb34553e..18bf2ed4fcdb 100644
>> --- a/.travis.yml
>> +++ b/.travis.yml
>> @@ -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
>>

Acked-by: Simon Glass <sjg@chromium.org>
Tom Rini Feb. 15, 2016, 10:36 p.m. UTC | #4
On Mon, Feb 08, 2016 at 06:23:35PM -0700, Stephen Warren wrote:

> From: Stephen Warren <swarren@nvidia.com>
> 
> 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>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/.travis.yml b/.travis.yml
index 8caaeb34553e..18bf2ed4fcdb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -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