blob: d19646012ba9810514dcc3493d6d8d75b1ecb56b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
machine:
post:
- pyenv global 2.7.11 3.5.2
services:
- redis
dependencies:
override:
- pip install -e .[testing]
- pip install python-coveralls
- pip3.5 install -e .[testing]
test:
override:
- nosetests-2.7 --with-coverage --cover-inclusive --cover-package=eventmq --cover-tests
- /opt/circleci/python/3.5.2/bin/nosetests-3.4
post:
- find . -name \*.py -print | xargs flake8 --show-source --statistics
- coveralls
|