Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move to GitHub Actions #96

Merged
merged 10 commits into from
Mar 8, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update tox.ini
  • Loading branch information
hynek authored Mar 8, 2020
commit b492dcec6fc04930b4c75dd8c1b0cc5db37316f2
18 changes: 12 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
[gh-actions]
python =
3.7: py37
3.8: py38, lint, manifest, pypi-description, docs


[tox]
envlist = lint,py37,manifest,docs,pypi-description,coverage-report
envlist = lint,py37,py38,manifest,docs,pypi-description,coverage-report
isolated_build = true


[testenv:lint]
basepython = python3.7
basepython = python3.8
skip_install = true
deps = pre-commit
passenv = HOMEPATH # needed on Windows
Expand All @@ -20,14 +26,14 @@ commands =


[testenv:manifest]
basepython = python3.7
basepython = python3.8
deps = check-manifest
skip_install = true
commands = check-manifest


[testenv:pypi-description]
basepython = python3.7
basepython = python3.8
skip_install = true
deps =
twine
Expand All @@ -38,13 +44,13 @@ commands =


[testenv:docs]
basepython = python3.5
basepython = python3.8
extras = docs
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html


[testenv:coverage-report]
basepython = python3.7
basepython = python3.8
skip_install = true
deps = coverage
commands =
Expand Down