mirror of
1
0
Fork 0

Add tests for more Python versions

This commit is contained in:
Anish Athalye 2017-03-06 15:06:29 -05:00
parent 847cb101d4
commit 2abfa7fd91
3 changed files with 8 additions and 1 deletions

View File

@ -13,5 +13,8 @@ indent_size = 4
[*.bash] [*.bash]
indent_size = 4 indent_size = 4
[*.yml]
indent_size = 2
[*.md] [*.md]
trim_trailing_whitespace = false trim_trailing_whitespace = false

View File

@ -1,10 +1,14 @@
language: python language: python
python: python:
- "2.7" - "2.7"
- "pypy"
- "3.2" - "3.2"
- "3.3" - "3.3"
- "3.4" - "3.4"
- "3.5" - "3.5"
- "3.6"
- "nightly"
- "pypy3"
sudo: false sudo: false

View File

@ -1,5 +1,5 @@
[Vagrantfile] [Vagrantfile]
indent_size = 2 indent_size = 2
[test] [{test,test_travis}]
indent_size = 4 indent_size = 4