mirror of https://github.com/jab/bidict.git
25 lines
345 B
YAML
25 lines
345 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
- "pypy"
|
|
- "pypy3"
|
|
|
|
install:
|
|
- pip install -e .[test]
|
|
- pip install coveralls
|
|
|
|
script:
|
|
- py.test --doctest-modules bidict
|
|
- py.test --cov bidict tests
|
|
|
|
after_success:
|
|
coveralls
|
|
|
|
sudo: false
|
|
|
|
notifications:
|
|
webhooks:
|
|
urls:
|
|
- https://webhooks.gitter.im/e/bf64fb45a633c0935b9b
|