Skip to content

Commit

Permalink
Merge 252396a into e18b81f
Browse files Browse the repository at this point in the history
  • Loading branch information
karolcatunda committed Sep 20, 2018
2 parents e18b81f + 252396a commit 44e9192
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ python:
- 3.5
install:
- pip3 install tox
- pip3 install coveralls
script:
- tox
notifications:
slack:
secure: of6RSkorlhoAXrB95cDq4bK/SbFsd3vdavHrrXZxE/00+anAYdVN5jMLJncxK8RE7XBApdpuRE4Ddys5YNl5U2qTggyrcxx3Fdlr/1B5BFzO4Rkelp08O+wEZR2ks/bZn1U3uq1p2zdlvdQ9ezv2GVVeeqvB6yXHMQz623IAYe4wrZs1V/4nTzzT1qiQh7Zwkw4UvcYhkp2kUcgye7KzRw+yCf1JBrtax8jLfP8eje7yXOHrX7sqDXBd2douqK0Dgs+yuMZ+e9uuQHLEYtDlvdIfAlmDrVn4+kohHa2kP6iJi7AbyrwHwxnaL4gWygsLIbYNYNznxp5Ll5sXfonyCULiJ/oCH5Kz4HxIIxxkFitI2LZxjfEwhukesClt6epy5OJxviLtdrucw/K5JnALhA+Kmvcrut/iZrb9rdYKkYSe1XFA0hhtg6rNO3V0UicRta9EWb/13e9ZD2DQ5e61iQKUNydgK2uud5K5PNGh/YI/XVTMNwtJwN+O2MFoZFPyzh6acopGiZXRdzLofbwg6KPGzAWyZbZ6YVUOAL0C7GoCTc9Z88/AaW6z9ziJ8gElW2FnxJKEf6ChFzcWh76kh14K4uz+Ze75/fTwDPWnQffBwmrefFrngqsy7rcNCLNy7hiH8jk7pUN8SbhC3e7edB+7Np2yF/er4Dj5+Fyqv3o=
after_success:
- coveralls
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Waffle.io - Columns and their card count](https://badge.waffle.io/HewlettPackard/oneview-redfish-toolkit.svg?columns=Ready,In%20Progress,Under%20Review)](https://waffle.io/HewlettPackard/oneview-redfish-toolkit) [![Build Status](https://travis-ci.org/HewlettPackard/oneview-redfish-toolkit.svg?branch=master)](https://travis-ci.org/HewlettPackard/oneview-redfish-toolkit)
[![Waffle.io - Columns and their card count](https://badge.waffle.io/HewlettPackard/oneview-redfish-toolkit.svg?columns=Ready,In%20Progress,Under%20Review)](https://waffle.io/HewlettPackard/oneview-redfish-toolkit) [![Build Status](https://travis-ci.org/HewlettPackard/oneview-redfish-toolkit.svg?branch=master)](https://travis-ci.org/HewlettPackard/oneview-redfish-toolkit) [![Coverage Status](https://coveralls.io/repos/github/HewlettPackard/oneview-redfish-toolkit/badge.svg?branch=master)](https://coveralls.io/github/HewlettPackard/oneview-redfish-toolkit?branch=master)

# HPE OneView Redfish Toolkit

Expand Down
2 changes: 2 additions & 0 deletions test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@

hacking>=0.12.0,<0.13 # Apache-2.0 - test pep8
oslotest<=3.5.0 # Apache-2.0 - test py35
coverage==4.5.1

7 changes: 5 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 3.0
envlist = docs, py35, pep8
envlist = docs, py35, pep8, cover
skipsdist = True
passenv = http_proxy https_proxy HTTP_PROXY HTTPS_PROXY

Expand All @@ -23,7 +23,10 @@ commands = flake8 {posargs}
commands = {posargs}

[testenv:cover]
commands = python setup.py test --coverage --testr-args='{posargs}'
deps = coverage
commands =
coverage run -m unittest discover
coverage report -m

[testenv:docs]
#basepython=python
Expand Down

0 comments on commit 44e9192

Please sign in to comment.