This commit is contained in:
Michel Oosterhof 2019-09-12 11:53:24 +04:00
parent a33e67fa84
commit b76ac0dbe1
1 changed files with 17 additions and 2 deletions

View File

@ -1,8 +1,15 @@
version: 2
workflows:
version: 2
test:
jobs:
- test-3.6-buster
- test-3.7-buster
- test-3.8-rc-buster
jobs:
build: # required for runs that don't use workflows
test-3.7-buster: &test-template
docker:
- image: circleci/python:3.7.2
- image: circleci/python:3.7-buster
steps:
- checkout
- run:
@ -24,3 +31,11 @@ jobs:
command: |
. cowrie-env/bin/activate
PYTHONPATH=`pwd`/src trial cowrie
test-3.6-buster:
<<: *test-template
docker:
- image: circleci/python:3.6-buster
test-3.8-rc-buster:
<<: *test-template
docker:
- image: circleci/python:2.8-rc-buster