diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2015-11-17 20:01:34 -0500 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2015-11-17 20:02:13 -0500 |
commit | a0cf76820085a86189e4e6e4950f89ca12b02146 (patch) | |
tree | 92f88ddac9f730a149c6bc7ce2309d53a7c90beb | |
parent | b8f87d1555dd391c8010f32cfea8ca6ec7768a9b (diff) | |
download | markdown-a0cf76820085a86189e4e6e4950f89ca12b02146.tar.gz markdown-a0cf76820085a86189e4e6e4950f89ca12b02146.tar.bz2 markdown-a0cf76820085a86189e4e6e4950f89ca12b02146.zip |
Switch Travis to new infrastructure for faster build.
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index cd7e285..7384f3d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,4 @@ +sudo: false language: python env: - TOXENV=py27 @@ -7,10 +8,11 @@ env: - TOXENV=pypy - TOXENV=flake8 - TOXENV=checkspelling -before_install: - - sudo apt-get update -qq - - sudo apt-get install libtidy-0.99-0 - - sudo apt-get install aspell +addons: + apt: + packages: + - libtidy-0.99-0 + - aspell install: - pip install tox - pip install coveralls |