forked from aleju/imgaug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
55 lines (44 loc) · 1.47 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
sudo: required
dist: trusty
language:
- python
- cpp
env:
global:
# - CODACY_PROJECT_TOKEN=63be83274aee4264aae7ba4c31d40677
- CODACY_PROJECT_TOKEN=1370ce38e99e40af842d47a8dd721444
cache:
directories:
- $HOME/.cache/pip
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq -y python-virtualenv # python-opencv
install:
# - virtualenv venv
# - . venv/bin/activate
- pip install -r requirements.txt
- pip install coverage codecov pytest>=3.0.5 pytest-cov codacy-coverage # nose>=1.3.7
- pip install .
before_script:
- pip install flake8
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
# currently deactivated as style guidelines are not yet kept in the project
# TODO change this
#- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
script:
- python tests/test.py
- coverage run --source imgaug --omit ./imgaug -m pytest tests/test.py --verbose --doctest-modules
# - nosetests tests/test.py -v --exe --with-doctest --with-xunit --with-coverage --cover-package=imgaug
after_success:
# - codecov -t 1be5afbb-64c5-40e0-a31d-9661518c0fd4
- codecov -t feeff9b2-3750-4246-befb-8cde60dc28aa
- coverage xml
- python-codacy-coverage -r coverage.xml
- coverage report