2018-05-07 23:19:28 +08:00
|
|
|
group: travis_latest
|
|
|
|
language: python
|
|
|
|
cache: pip
|
|
|
|
python:
|
2019-10-27 18:13:26 +08:00
|
|
|
- 3.7
|
2018-05-07 23:19:28 +08:00
|
|
|
install:
|
2019-10-27 18:13:26 +08:00
|
|
|
- pip install -r monkey/monkey_island/requirements.txt
|
|
|
|
- pip install flake8 pytest dlint
|
2019-10-27 19:50:13 +08:00
|
|
|
- pip install -r monkey/infection_monkey/requirements_linux.txt
|
2018-05-07 23:19:28 +08:00
|
|
|
before_script:
|
2019-10-27 18:13:26 +08:00
|
|
|
- flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
|
|
|
|
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
|
2018-05-07 23:19:28 +08:00
|
|
|
script:
|
2019-10-27 19:48:09 +08:00
|
|
|
- cd monkey # This is our source dir
|
2019-10-28 00:31:44 +08:00
|
|
|
- python -m pytest # Have to use `python -m pytest` instead of `pytest` to add "{$builddir}/monkey/monkey" to sys.path.
|
2018-05-07 23:19:28 +08:00
|
|
|
notifications:
|
2019-10-27 18:13:26 +08:00
|
|
|
slack:
|
2019-10-27 18:29:52 +08:00
|
|
|
rooms:
|
2019-10-28 00:31:44 +08:00
|
|
|
- infectionmonkey:QaXbsx4g7tHFJW0lhtiBmoAg#ci
|
|
|
|
- infectionmonkey:QaXbsx4g7tHFJW0lhtiBmoAg#github
|
2019-10-27 19:48:09 +08:00
|
|
|
on_success: always
|
2019-10-27 18:29:52 +08:00
|
|
|
on_failure: always
|
2019-10-28 00:31:44 +08:00
|
|
|
email:
|
|
|
|
on_success: change
|
|
|
|
on_failure: always
|