Skip to content

Commit c633076

Browse files
authored
Start running CircleCI builds with Python 3.8 dev builds (#406)
* Start running CircleCI builds with Python 3.8 dev builds * Build Py38 on circle
1 parent f49c4bd commit c633076

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
test-cpython:
44
docker:
5-
- image: chrisrink10/pyenv:3.6-3.7-3.8dev-0.0.4
5+
- image: chrisrink10/pyenv:3.6-3.7-3.8dev-0.0.5
66
user: pyenv
77
steps:
88
- checkout
@@ -20,7 +20,7 @@ jobs:
2020
TOX_NUM_CORES: 2
2121
TOX_SHOW_OUTPUT: "True"
2222
command: |
23-
tox -p $TOX_NUM_CORES -e py36,py37,coverage,mypy,format,lint,safety
23+
tox -p $TOX_NUM_CORES -e py36,py37,py38,coverage,mypy,format,lint,safety
2424
- save_cache:
2525
key: deps9-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
2626
paths:
@@ -32,7 +32,7 @@ jobs:
3232

3333
test-pypy:
3434
docker:
35-
- image: pypy:3.6-7.0-slim-jessie
35+
- image: pypy:3.6-7.1-slim-stretch
3636
steps:
3737
- checkout
3838
- restore_cache:

tox.ini

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36,py37,mypy,format,lint
2+
envlist = py36,py37,py38,mypy,format,lint
33

44
[testenv]
55
parallel_show_output = {env:TOX_SHOW_OUTPUT:false}
@@ -16,6 +16,9 @@ commands =
1616
--junitxml={toxinidir}/junit/pytest/{envname}.xml \
1717
{posargs}
1818

19+
[testenv:py38]
20+
ignore_outcome = true
21+
1922
[testenv:coverage]
2023
parallel_show_output = {env:TOX_SHOW_OUTPUT:false}
2124
depends = py36, py37

0 commit comments

Comments
 (0)