diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-15 04:58:44 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-15 04:58:44 +0300 |
commit | c1cc4a68bcbe41e17916ae851c95bed1d0d852e7 (patch) | |
tree | b1d7d84e84372a4c306fe39e6abbf57a5fe7ebc0 | |
parent | cc8c0882a0e7fefc95fd1a01c5c0c42b453e1984 (diff) | |
parent | c29a0ac56a916fe14d443086a2987c0bb65b8749 (diff) | |
download | micropython-c1cc4a68bcbe41e17916ae851c95bed1d0d852e7.tar.gz micropython-c1cc4a68bcbe41e17916ae851c95bed1d0d852e7.zip |
Merge pull request #486 from lurch/patch-1
Update .travis.yml to use python3.3
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index f2add19027..62dd656ccf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,8 +3,12 @@ compiler: - gcc before_script: - - sudo apt-get install python3 + - sudo add-apt-repository -y ppa:fkrull/deadsnakes + - sudo apt-get update -qq + - sudo apt-get install -y python3.3 python3 script: - make -C unix - - cd tests && ./run-tests basics/[a-eistuw]*.py + - cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests + +after_failure: for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff $testbase.exp $testbase.out; done |