Skip to content
Open
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
129 changes: 124 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,22 @@ jobs:
# This file is automatically generated by ../rebuild-circleci-yaml
# !!! WARNING !!!

test-py27-pytest4:
docker:
- image: python:2.7
steps:
- checkout
- run:
name: install tox
command: pip install tox==3.7.0
- run:
name: run tests
command: tox -e py27-pytest4

# !!! WARNING !!!
# This file is automatically generated by ../rebuild-circleci-yaml
# !!! WARNING !!!

test-py27-unit:
docker:
- image: python:2.7
Expand Down Expand Up @@ -169,6 +185,22 @@ jobs:
# This file is automatically generated by ../rebuild-circleci-yaml
# !!! WARNING !!!

test-py35-pytest4:
docker:
- image: python:3.5
steps:
- checkout
- run:
name: install tox
command: pip install tox==3.7.0
- run:
name: run tests
command: tox -e py35-pytest4

# !!! WARNING !!!
# This file is automatically generated by ../rebuild-circleci-yaml
# !!! WARNING !!!

test-py35-unit:
docker:
- image: python:3.5
Expand Down Expand Up @@ -265,6 +297,22 @@ jobs:
# This file is automatically generated by ../rebuild-circleci-yaml
# !!! WARNING !!!

test-py36-pytest4:
docker:
- image: python:3.6
steps:
- checkout
- run:
name: install tox
command: pip install tox==3.7.0
- run:
name: run tests
command: tox -e py36-pytest4

# !!! WARNING !!!
# This file is automatically generated by ../rebuild-circleci-yaml
# !!! WARNING !!!

test-py36-unit:
docker:
- image: python:3.6
Expand Down Expand Up @@ -361,6 +409,22 @@ jobs:
# This file is automatically generated by ../rebuild-circleci-yaml
# !!! WARNING !!!

test-pypy-pytest4:
docker:
- image: pypy:2
steps:
- checkout
- run:
name: install tox
command: pip install tox==3.7.0
- run:
name: run tests
command: tox -e pypy-pytest4

# !!! WARNING !!!
# This file is automatically generated by ../rebuild-circleci-yaml
# !!! WARNING !!!

test-pypy-unit:
docker:
- image: pypy:2
Expand Down Expand Up @@ -441,6 +505,22 @@ jobs:
# This file is automatically generated by ../rebuild-circleci-yaml
# !!! WARNING !!!

test-py37-pytest4:
docker:
- image: python:3.7
steps:
- checkout
- run:
name: install tox
command: pip install tox==3.7.0
- run:
name: run tests
command: tox -e py37-pytest4

# !!! WARNING !!!
# This file is automatically generated by ../rebuild-circleci-yaml
# !!! WARNING !!!

test-py37-unit:
docker:
- image: python:3.7
Expand Down Expand Up @@ -521,6 +601,22 @@ jobs:
# This file is automatically generated by ../rebuild-circleci-yaml
# !!! WARNING !!!

test-py38-pytest4:
docker:
- image: python:3.8
steps:
- checkout
- run:
name: install tox
command: pip install tox==3.7.0
- run:
name: run tests
command: tox -e py38-pytest4

# !!! WARNING !!!
# This file is automatically generated by ../rebuild-circleci-yaml
# !!! WARNING !!!

test-py38-unit:
docker:
- image: python:3.8
Expand Down Expand Up @@ -555,7 +651,7 @@ jobs:

test-py39-nose:
docker:
- image: python:3.9-rc
- image: python:3.9
steps:
- checkout
- run:
Expand All @@ -571,7 +667,7 @@ jobs:

test-py39-nose2:
docker:
- image: python:3.9-rc
- image: python:3.9
steps:
- checkout
- run:
Expand All @@ -587,7 +683,7 @@ jobs:

test-py39-pytest3:
docker:
- image: python:3.9-rc
- image: python:3.9
steps:
- checkout
- run:
Expand All @@ -601,9 +697,25 @@ jobs:
# This file is automatically generated by ../rebuild-circleci-yaml
# !!! WARNING !!!

test-py39-pytest4:
docker:
- image: python:3.9
steps:
- checkout
- run:
name: install tox
command: pip install tox==3.7.0
- run:
name: run tests
command: tox -e py39-pytest4

# !!! WARNING !!!
# This file is automatically generated by ../rebuild-circleci-yaml
# !!! WARNING !!!

test-py39-unit:
docker:
- image: python:3.9-rc
- image: python:3.9
steps:
- checkout
- run:
Expand All @@ -619,7 +731,7 @@ jobs:

test-py39-unit2:
docker:
- image: python:3.9-rc
- image: python:3.9
steps:
- checkout
- run:
Expand All @@ -637,39 +749,46 @@ workflows:
- test-py27-nose2
- test-py27-pytest2
- test-py27-pytest3
- test-py27-pytest4
- test-py27-unit
- test-py27-unit2
- test-py35-nose
- test-py35-nose2
- test-py35-pytest2
- test-py35-pytest3
- test-py35-pytest4
- test-py35-unit
- test-py35-unit2
- test-py36-nose
- test-py36-nose2
- test-py36-pytest2
- test-py36-pytest3
- test-py36-pytest4
- test-py36-unit
- test-py36-unit2
- test-pypy-nose
- test-pypy-nose2
- test-pypy-pytest2
- test-pypy-pytest3
- test-pypy-pytest4
- test-pypy-unit
- test-pypy-unit2
- test-py37-nose
- test-py37-nose2
- test-py37-pytest3
- test-py37-pytest4
- test-py37-unit
- test-py37-unit2
- test-py38-nose
- test-py38-nose2
- test-py38-pytest3
- test-py38-pytest4
- test-py38-unit
- test-py38-unit2
- test-py39-nose
- test-py39-nose2
- test-py39-pytest3
- test-py39-pytest4
- test-py39-unit
- test-py39-unit2
# !!! WARNING !!!
Expand Down
Loading