mirror of
https://github.com/androguard/androguard.git
synced 2024-11-27 06:50:41 +00:00
37 lines
744 B
YAML
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
|