Skip to content

Commit

Permalink
Merge ebd5534 into 4ad1cee
Browse files Browse the repository at this point in the history
  • Loading branch information
espdev committed May 4, 2020
2 parents 4ad1cee + ebd5534 commit 415d0e3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get_long_description():
],
extras_require={
'docs': ['sphinx>=2.3, <3', 'Pallets-Sphinx-Themes', 'm2r'],
'tests': ['pytest'],
'tests': ['coverage <6', 'pytest', 'pytest-cov', 'coveralls'],
},
url='https://github.com/click-contrib/click-option-group',
project_urls={
Expand Down
13 changes: 5 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
[tox]
envlist = py{36,37,38}-pytest-coverage, flake8
skipsdist = True

[testenv]
deps = pytest
commands = pytest --color=yes -v {posargs}
commands =
pip install -e .[tests]
pytest --color=yes -v {posargs}

[testenv:py37-pytest-coverage]
usedevelop = true
passenv = TRAVIS TRAVIS_*
deps =
pytest
coverage <6
pytest-cov
coveralls
commands =
pip install -e .[tests]
pytest --cov=click_option_group --color=yes -v {posargs}
coveralls

Expand Down

0 comments on commit 415d0e3

Please sign in to comment.