mirror of
https://github.com/androguard/androguard.git
synced 2024-11-26 22:40:33 +00:00
31 lines
804 B
YAML
31 lines
804 B
YAML
language: python
|
|
dist: xenial
|
|
arch:
|
|
- amd64
|
|
- ppc64le
|
|
# Download jadx decompiler
|
|
before_script:
|
|
- wget https://github.com/skylot/jadx/releases/download/v1.2.0/jadx-1.2.0.zip -O /tmp/jadx-1.2.0.zip
|
|
- unzip /tmp/jadx-1.2.0.zip -d jadx-1.2.0
|
|
- export PATH=$PATH:$PWD/jadx-1.2.0/bin
|
|
|
|
python:
|
|
- "3.6"
|
|
- "3.7"
|
|
- "3.8"
|
|
- "3.9"
|
|
# - "3.5" # disabled because of f"" strings.
|
|
# - "pypy3" # matplotlib does not compile
|
|
# - "3.4" # Disabled due to LXML compile error on 3.4
|
|
# - "3.8-dev" # Disabled due to LXML compile error on 3.8
|
|
# command to install dependencies
|
|
install:
|
|
- "pip install .[tests,docs,magic]"
|
|
# command to run tests
|
|
script:
|
|
- nosetests --with-coverage --with-timer --timer-top-n 50 --logging-level CRITICAL
|
|
- python setup.py build_sphinx
|
|
|
|
after_success:
|
|
- codecov
|