Skip to content

Commit

Permalink
Merge pull request Vimjas#89 from blueyed/py38
Browse files Browse the repository at this point in the history
ci: test with py38
  • Loading branch information
blueyed authored Jan 2, 2020
2 parents e3f80f0 + 3aa6500 commit 2949279
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
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

0 comments on commit 2949279

Please sign in to comment.