forked from openstack/networking-generic-switch
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from stackhpc/cauterise-links
Support disabling inactive links
- Loading branch information
Showing
8 changed files
with
113 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
language: python | ||
python: "2.7" | ||
|
||
# Run jobs in VMs - sudo is required by ansible tests. | ||
sudo: required | ||
|
||
# Install ansible | ||
addons: | ||
apt: | ||
packages: | ||
- gcc | ||
- python-apt | ||
- python-virtualenv | ||
- realpath | ||
|
||
# Create a build matrix for the different test jobs. | ||
env: | ||
matrix: | ||
# Run python style checks. | ||
- TOX_ENV=pep8 | ||
# Build documentation. | ||
- TOX_ENV=docs | ||
# Run python2.7 unit tests. | ||
- TOX_ENV=py27 | ||
|
||
install: | ||
# Install tox in a virtualenv to ensure we have an up to date version. | ||
- pip install -U pip | ||
- pip install tox | ||
|
||
script: | ||
# Run the tox environment. | ||
- tox -e ${TOX_ENV} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters