mirror of
https://github.com/iluvcapra/pycmx.git
synced 2025-12-31 08:50:54 +00:00
17 lines
333 B
YAML
17 lines
333 B
YAML
language: python
|
|
python:
|
|
- "3.6"
|
|
- "3.5"
|
|
- "2.7"
|
|
script:
|
|
- "python setup.py test"
|
|
- "py.test tests/ -v --cov pycmx --cov-report term-missing"
|
|
install:
|
|
- "pip install setuptools"
|
|
before_install:
|
|
- "pip install coverage"
|
|
- "pip install pytest-cov==2.5.0"
|
|
- "pip install python-coveralls"
|
|
after_success:
|
|
- coveralls
|