forked from vmware/container-service-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VCDA-415: validate settings before creating template (vmware#65)
- validates settings before creating template - updated requirements version - added format-code.sh script - added travis support Signed-off-by: Paco Gomez <contact@pacogomez.com>
- Loading branch information
Showing
8 changed files
with
57 additions
and
52 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,14 @@ | ||
language: python | ||
|
||
python: | ||
- '3.6' | ||
|
||
install: | ||
- pip install -r requirements.txt | ||
- python setup.py install | ||
- pip install tox | ||
|
||
script: | ||
- pip list --format=columns | grep container-service-extension | ||
- python -c 'import pkg_resources; print(pkg_resources.require("pyvcloud")[0].version)' | ||
- tox -e flake8 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env bash | ||
|
||
yapf -i container_service_extension/*.py | ||
yapf -i container_service_extension/client/*.py | ||
yapf -i tests/*.py | ||
flake8 container_service_extension/*.py | ||
flake8 container_service_extension/client/*.py | ||
flake8 tests/*.py |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
cachetools | ||
humanfriendly | ||
pika >= 0.10.0 | ||
cachetools >= 2.0.1 | ||
humanfriendly >= 4.8 | ||
pika >= 0.11.2 | ||
pyvcloud >= 19.1.1 | ||
vcd-cli >= 20.1.1 | ||
vsphere-guest-run >= 0.0.3 | ||
pyvcloud >= 19.1.1.dev16 | ||
vcd-cli >= 20.1.1.dev11 |
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 |
---|---|---|
|
@@ -3,6 +3,4 @@ flake8 | |
flake8-import-order | ||
flake8_docstrings | ||
hacking | ||
nose>=1.3.6 | ||
nose-testconfig>=0.9.1 | ||
yapf |
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