
- Register Oslo logging configurations in server.py, test_armada.py, test_chartbuilder.py, and test_tiller.py - Add mock to test-requirements.txt - Update .travis.yml - Add mock case for tiller IP
25 lines
431 B
YAML
25 lines
431 B
YAML
language: python
|
|
|
|
sudo: required
|
|
|
|
python:
|
|
- "2.7"
|
|
|
|
before_install:
|
|
- sudo sh tools/libgit2.sh
|
|
- pip install -r test-requirements.txt
|
|
- pip install -r requirements.txt
|
|
- pip install tox
|
|
- pip install pygit2==0.25.0
|
|
|
|
install:
|
|
- pip install -e .
|
|
|
|
script:
|
|
- flake8
|
|
- armada -h
|
|
- nosetests -w armada/tests/unit --cover-package=armada --with-coverage --cover-tests
|
|
|
|
# after_success:
|
|
# - codecov
|