diff options
| author | bors <bors@rust-lang.org> | 2017-07-25 23:46:14 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-07-25 23:46:14 +0000 |
| commit | b5e8a8ef97abef8a69a9c72de74fed779b401d73 (patch) | |
| tree | 38eaa6e06fa1a49a16ac60a5481321995057dac8 /src/ci | |
| parent | c417ee9ae8c30ac307c58591da46cf62e91caac1 (diff) | |
| parent | f516765b94761838fd15cff283757e74e61cdd41 (diff) | |
| download | rust-b5e8a8ef97abef8a69a9c72de74fed779b401d73.tar.gz rust-b5e8a8ef97abef8a69a9c72de74fed779b401d73.zip | |
Auto merge of #43046 - milmazz:bootstrap-unittest, r=aidanhs
bootstrap: Add doctests and unitests This commit includes the following changes: * Include more docstrings in classes, methods, and functions * Add doctests, which are great for self-documenting our source code * Add some unit tests with the `unittest` module * Remove `WindowsError` reference on non-windows systems * Rename some variables to be more explicit about their meaning * Move all the attributes defined outside of `__init__` * Add initial support for Python 3 r? @alexcrichton
Diffstat (limited to 'src/ci')
| -rwxr-xr-x | src/ci/run.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ci/run.sh b/src/ci/run.sh index 549e804603c..ccf0bb1ffb7 100755 --- a/src/ci/run.sh +++ b/src/ci/run.sh @@ -74,6 +74,12 @@ retry make prepare travis_fold end make-prepare travis_time_finish +travis_fold start check-bootstrap +travis_time_start +make check-bootstrap +travis_fold end check-bootstrap +travis_time_finish + if [ "$TRAVIS_OS_NAME" = "osx" ]; then ncpus=$(sysctl -n hw.ncpu) else |
