use tox for ci

master
Richard O'Dwyer 2019-10-16 21:26:07 +01:00
parent 00c2fb2192
commit 2cb2148ddc
5 changed files with 36 additions and 6 deletions

View File

@ -1,5 +1,10 @@
sudo: false
language: python
python:
- "2.7"
install: pip install -r requirements-dev.txt
script: python setup.py install && pytest tests/unit-tests.py -x -s -v
- 2.7
- 3.7
env:
- TOXENV=py-normal
install: pip install tox
script: tox

View File

@ -6,3 +6,6 @@ pep8-naming
autoflake
mccabe
yapf
tox
coverage
pytest-cov

View File

@ -26,3 +26,17 @@ no_spaces_around_selected_binary_operators = false
split_penalty_import_names = 500
join_multiple_lines = true
[coverage:run]
omit =
tests/*
src/*
setup.py
.tox/*
dist/*
**/celeryconfig.py
**/constants.py
**/migrations/*
**/__init__.py
app.py
**/env.py
**/urls.py

View File

@ -9,9 +9,6 @@ import os
from mega import Mega
email = os.environ['EMAIL']
password = os.environ['PASS']
mega = Mega()
# anonymous login
m = mega.login()

11
tox.ini Normal file
View File

@ -0,0 +1,11 @@
[tox]
envlist = py{27,37}-normal,lint
[testenv]
commands =
flake8 {toxinidir}/src/
coverage erase
PYTHONPATH=. pytest --cov=. {toxinidir}/tests/tests.py
deps =
-rrequirements-dev.txt