Damien George
256b319d56
tests: Disable memoryerror.py test, since it fails on travis.
Would be good to test this, but need to find a way to optionally not
running it when on travis.
11 years ago
Damien George
48aaa27c6a
travis: Diff output, hopefully this works.
11 years ago
Damien George
fd1c7b9d48
travis: Continue to debug tests output.
Seems that any commands in after_failure do not have stdout...
11 years ago
Damien George
e8ecca21ff
travis: More tests output debugging.
11 years ago
Damien George
c13d0b3304
stmhal: Wrap skin-named-usarts in PYBV10 #if.
11 years ago
Damien George
35443610b1
travis: More tests debugging.
11 years ago
Damien George
45b4cc77dd
travis: Debugging failing tests.
11 years ago
Damien George
9e2890bb00
travis: On fail, cd to tests directory before diffing.
11 years ago
Damien George
2f930fa0cb
Merge pull request #490 from redteam316/master
Fixed Travis-CI Build Status Link in README.md
11 years ago
Andrew Scheller
11559cff38
travis: only build unix with gcc-4.7
11 years ago
Andrew Scheller
f0777d1c2c
travis: build unix targets first
because @pfalcon says so
11 years ago
Jonathan Greig
e71311ed87
Fixed Travis-CI Build Status Link in README.md
11 years ago
Andrew Scheller
499d50be98
Merge remote-tracking branch 'upstream/master' into patch-1
Conflicts:
.travis.yml
11 years ago
Paul Sokolovsky
8c1bec4ae7
.travis.yml: Use gcc-4.7 to avoid broken codegeneration and failed tests.
11 years ago
Andrew Scheller
16fecc0a84
Update .travis.yml
Check that the bare-arm, stmhal and unix-cpy ports at least remain compilable, even if we can only actually run tests against the unix port.
11 years ago
Paul Sokolovsky
c1cc4a68bc
Merge pull request #486 from lurch/patch-1
Update .travis.yml to use python3.3
11 years ago
Andrew Scheller
c29a0ac56a
Update .travis.yml
Seems like I'd inadvertently created invalid YAML!
11 years ago
Andrew Scheller
9b5a9d41dc
Update .travis.yml
Add diffing of failure logs
11 years ago
Andrew Scheller
e31a8222f2
Update .travis.yml
Doh, the shebang line for run-tests itself relies on `python3`
11 years ago
Andrew Scheller
0388b2ea78
Update .travis.yml
This *might* fix it enough for all tests to run (maybe?)
11 years ago
Paul Sokolovsky
cc8c0882a0
pip-micropython: Fix inverted condition.
11 years ago
Damien George
e10da77a5c
Merge branch 'master' of github.com:micropython/micropython
11 years ago
Damien George
8341725b65
travis: Only run some tests, to work around CPython version issues.
Needs a proper fix, to install/configure CPython 3.3.x (or 3.4.0) on
Travis CI.
11 years ago
Damien George
3683789207
py: Clean up and add comments to makeqstrdata.
11 years ago
Paul Sokolovsky
a5854d2bc5
builtinimport: Add basic support for namespace packages.
That was easy - just avoid erroring out on seeing candidate dir for namespace
package. That's far from being complete though - namespace packages should
support importing portions of package from different sys.path entries, here
we require first matching entry to contain all namespace package's portions.
And yet, that's a way to put parts of the same Python package into multiple
installable package - something we really need for *Micro*Python.
11 years ago
Paul Sokolovsky
75ffcaeace
py: Implement __delitem__ method for classes.
11 years ago
Damien George
bc9ec5002d
Merge pull request #485 from lurch/patch-1
pip-micropython: revert $HOME back to ~
11 years ago
Andrew Scheller
6fc40cc3da
pip-micropython: revert $HOME back to ~
11 years ago
Damien George
5224705248
travis: Change to tests directory before running.
11 years ago
Damien George
3d867f5eab
Merge pull request #479 from lurch/patch-1
Don't allow both ENDIANNESSes to be set
11 years ago
Damien George
a7239b2fc2
Merge pull request #480 from lurch/patch-2
Make pip-micropython more portable
11 years ago
Damien George
98bd4f24ff
Fix README build status image.
11 years ago
Damien George
1d8d2f84aa
Merge branch 'master' of github.com:micropython/micropython
11 years ago
Damien George
15bbd251f6
Update README to include build status from Travis CI.
11 years ago
Damien George
2a2cfbd0cf
Merge pull request #484 from aitjcize/travis
Add Travis CI support.
11 years ago
Damien George
3bb8bd899b
Make USE_COMPUTED_GOTO a config option in mpconfig.h.
Disabled by default. Enabled in unix port.
11 years ago
Damien George
0ae9c7042a
Merge branch 'master' of github.com:micropython/micropython
11 years ago
Damien George
1da8a6cfc7
Merge pull request #482 from aitjcize/threaded
Use computed goto instead of switching op-codes.
11 years ago
AZ Huang
b1f692e82e
Use computed goto instead of switching op-codes.
11 years ago
Damien George
5904dad842
Merge pull request #483 from aitjcize/parallel
Fix parallel build.
11 years ago
Damien George
ad8abd1a95
Merge branch 'master' of github.com:micropython/micropython
11 years ago
AZ Huang
60993c166d
Add Travis CI support.
11 years ago
AZ Huang
658eae308f
Fix parallel build.
11 years ago
Andrew Scheller
0aac7ba344
Make pip-micropython more portable
Replace /tmp with a $TMPDIR variable
Replace multiple occurrences of /tmp/pip-micropy-venv with a $TMPVENV variable
Replace ~ with $HOME
11 years ago
Andrew Scheller
cc83737d35
Don't allow both ENDIANNESSes to be set
See discussion on 2da81fa80c
Explicitly set `MP_ENDIANNESS_LITTLE` because that's the #define that is used in code elsewhere.
11 years ago
Damien George
48a9b3fd11
tools: Improve timout/reading of pyboard.py.
11 years ago
Damien George
cce7119a2b
stmhal: Work around crazy bug in USB CDC.
Packets of 64 bytes length are not send to the host until the following
packet is sent. Fixed by never sending packets of 64 bytes length.
11 years ago
Damien George
7e5be0b1b4
stmhal: Improved usart module a bit.
11 years ago
Damien George
6dba016a56
stmhal: Add pyb.wfi() function (calls __WFI).
11 years ago
Paul Sokolovsky
bbae42d62f
modsys: Implement sys.version.
The logic appears to be that (at least beginning of) sys.versions is the
version of reference Python language implemented, not version of particular
implementation.
Also, bump set versions at 3.4.0, based on @dpgeorge preference.
11 years ago