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

ci: test with py38 #89

Merged
merged 3 commits into from
Jan 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 7 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ common: &common
set +x
fi
jobs:
py38:
<<: *common
docker:
- image: circleci/python:3.8
environment:
- TOXENV=py38-coverage
py37-coveragepy5:
<<: *common
docker:
Expand Down Expand Up @@ -93,6 +99,7 @@ workflows:
version: 2
test:
jobs:
- py38
- py37-coveragepy5
- py37
- py37-click6
Expand Down
14 changes: 12 additions & 2 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
[run]
source = .
include =
covimerage/*
tests/*
*/lib/python*/site-packages/covimerage/*
*/pypy*/site-packages/covimerage/*
*\Lib\site-packages\covimerage\*
branch = true
# Wrong warning caused by include used in [report] (Coveragepy 4.4.2)
# Ref: https://bitbucket.org/ned/coveragepy/issues/621
Expand All @@ -8,4 +13,9 @@ parallel = true

[report]
show_missing = true
include = covimerage/*,tests/*

[paths]
source = covimerage/
*/lib/python*/site-packages/covimerage/
*/pypy*/site-packages/covimerage/
*\Lib\site-packages\covimerage\
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ envlist = py{27,33,34,35,36,37},checkqa

[testenv]
extras = {env:TOX_EXTRAS:testing}
usedevelop = True
passenv = PYTEST_ADDOPTS
commands = {env:TOX_CMD:{env:COVERAGE_RUN:pytest}} {posargs}
setenv =
Expand Down