forked from androguard/androguard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
39 lines (37 loc) · 861 Bytes
/
.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
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
# command to install dependencies
install:
- "pip install ."
- "pip install -r requirements.txt"
# 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
- python tests/test_rename.py
# Decompiler Tests
- python tests/test_decompiler.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