androguard/.travis.yml
2017-06-10 18:43:36 +02:00

37 lines
744 B
YAML

language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
# command to install dependencies
install:
- "pip install ."
# command to run tests
script:
# DEX tests
- python tests/test_dex.py
# Analysis tests
- python tests/test_analysis.py
# APK tests
- python tests/test_apk.py
- python tests/test_axml.py
- python tests/test_arsc.py
# Session tests
- python tests/test_session.py
# DAD tests
- python androguard/decompiler/dad/tests/dataflow_test.py
- python androguard/decompiler/dad/tests/dominator_test.py
- python androguard/decompiler/dad/tests/rpo_test.py
notifications:
email:
recipients:
- desnos@t0t0.fr
on_success: always
on_failure: always