-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
26 lines (26 loc) · 1.37 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
matrix:
include:
- &PY {
language: python,
python: "3.6",
install: ["pip install 'tox>=2.4.1,<3'"],
script: ['cd app', 'tox -e py36']
}
- {<<: *PY, script: ['cd app', 'tox -e pylint']}
- {<<: *PY, script: ['cd app', 'tox -e flake8']}
- {<<: *PY, script: ['cd filesystem_service', 'tox -e py36']}
- {<<: *PY, script: ['cd filesystem_service', 'tox -e pylint']}
- {<<: *PY, script: ['cd filesystem_service', 'tox -e flake8']}
- {<<: *PY, script: ['cd onedrive_service', 'tox -e py36']}
- {<<: *PY, script: ['cd onedrive_service', 'tox -e pylint']}
- {<<: *PY, script: ['cd onedrive_service', 'tox -e flake8']}
- {<<: *PY, script: ['cd synchronization_service', 'tox -e py36']}
- {<<: *PY, script: ['cd synchronization_service', 'tox -e pylint']}
- {<<: *PY, script: ['cd synchronization_service', 'tox -e flake8']}
- {<<: *PY, script: ['cd entities/python', 'tox -e py36']}
- {<<: *PY, script: ['cd entities/python', 'tox -e pylint']}
- {<<: *PY, script: ['cd entities/python', 'tox -e flake8']}
- {<<: *PY, script: ['cd entities/python', 'tox -e pydocstyle']}
- {<<: *PY, script: ['cd entities/proto/plugins/python', 'tox -e pylint']}
- {<<: *PY, script: ['cd entities/proto/plugins/python', 'tox -e flake8']}
- {<<: *PY, script: ['cd entities/proto/plugins/python', 'tox -e pydocstyle']}