ea6ad23672
Change-Id: Ib477b945e922fd0a1767bd6643c0a45751599fad
23 lines
367 B
YAML
23 lines
367 B
YAML
language: python
|
|
|
|
sudo: required
|
|
|
|
python:
|
|
- "2.7"
|
|
|
|
before_install:
|
|
- pip install -r test-requirements.txt
|
|
- pip install -r requirements.txt
|
|
- pip install tox
|
|
|
|
install:
|
|
- pip install -e .
|
|
|
|
script:
|
|
- flake8
|
|
- armada -h
|
|
- nosetests -w armada/tests/unit --cover-package=armada --with-coverage --cover-tests
|
|
|
|
# after_success:
|
|
# - codecov
|