mirror of https://github.com/cowrie/cowrie.git
circle
This commit is contained in:
parent
a33e67fa84
commit
b76ac0dbe1
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue