Skip to content

Commit

Permalink
Merge pull request #6 from jayvdb/tox-more-vers
Browse files Browse the repository at this point in the history
Test more click versions
  • Loading branch information
timofurrer committed Aug 26, 2019
2 parents f7e4dd4 + f3dfac1 commit b13302f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -22,6 +22,8 @@ script:
- py.test tests --cov click_aliases --cov-report term-missing
- pip install 'click>6,<7'
- py.test tests --cov click_aliases --cov-report term-missing --cov-append
- pip install 'click>5,<6'
- py.test tests --cov click_aliases --cov-report term-missing --cov-append

after_success:
- coveralls
Expand Down
14 changes: 12 additions & 2 deletions tox.ini
@@ -1,10 +1,20 @@
[tox]
toxenv = py{27,34,35,36,37}-click{6,7}
toxenv = py{27,34,35,36,37}-click{3,40,41,50,51,62,63,64,65,66,6x,7}

[testenv]
passenv = LANG
deps =
click6: click>6,<7
click3: click>=3,<4
click40: click==4.0
click41: click==4.1
click50: click==5.0
click51: click==5.1
click62: click==6.2
click63: click==6.3
click64: click==6.4
click65: click==6.5
click66: click==6.6
click6x: click>6,<7
click7: click>=7,<8
pytest
commands = py.test

0 comments on commit b13302f

Please sign in to comment.