mirror of
https://github.com/androguard/androguard.git
synced 2024-11-30 08:20:32 +00:00
35 lines
687 B
YAML
35 lines
687 B
YAML
language: python
|
|
|
|
# Download jadx decompiler
|
|
before_script:
|
|
- wget https://github.com/skylot/jadx/releases/download/v0.6.1/jadx-0.6.1.zip -O /tmp/jadx-0.6.1.zip
|
|
- unzip /tmp/jadx-0.6.1.zip -d jadx-0.6.1
|
|
- export PATH=$PATH:$PWD/jadx-0.6.1/bin
|
|
|
|
python:
|
|
- "3.6"
|
|
- "3.5"
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.7-dev"
|
|
- "3.8-dev"
|
|
- "nightly"
|
|
# command to install dependencies
|
|
install:
|
|
- "pip install .[tests,docs]"
|
|
# command to run tests
|
|
script:
|
|
- nosetests --with-coverage --with-timer --timer-top-n 50
|
|
- python setup.py build_sphinx
|
|
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- desnos@t0t0.fr
|
|
on_success: always
|
|
on_failure: always
|
|
|
|
after_success:
|
|
- codecov
|