forked from mbevilacqua/appcompatprocessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
33 lines (26 loc) · 955 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
# safelist
branches:
only:
- master
- develop
os:
- linux
language: python
python:
- "2.7"
env:
- LIBREGF_PYTHON_VERSION="20181129"
- LIBREGF_PYTHON_VERSION="20181231"
install:
- wget https://github.com/libyal/libregf/releases/download/$LIBREGF_PYTHON_VERSION/libregf-alpha-$LIBREGF_PYTHON_VERSION.tar.gz
- tar xzvf libregf-alpha-$LIBREGF_PYTHON_VERSION.tar.gz
- pushd libregf-$LIBREGF_PYTHON_VERSION && ./configure --enable-python && make && sudo make install && python setup.py build && python setup.py install && popd
- pip install faker
- pip install -r requirements.txt
- pip install -U pytest
# command to run tests
script: pytest ./test/test_dump.py ./test/test_filehitcount.py ./test/test_leven.py ./test/test_mpengine.py ./test/test_search.py ./test/test_stack.py ./test/test_status.py ./test/test_tcorr.py ./test/test_tstack.py ./test/test_tstomp.py
notifications:
email:
on_success: never
on_failure: always