summaryrefslogtreecommitdiff
path: root/functional/tests/compute/v2/test_agent.py
Commit message (Collapse)AuthorAgeFilesLines
* move all functional tests to tests moduleSteve Martinelli2016-09-091-77/+0
| | | | | | | | | | | | | | functional tests should be grouped with other tests (unit and integration tests). as part of this commit the "common" module was renamed to just "base", this was done for simplicity. the post_test_hook.sh file was also copied to the functional module since it should live there. a separate change to the infra repo will be made to call the new location, once that is merged we can remove the old one (a new change will also be posted for that) Needed-By: I49d54f009021d65c1ae49faf6b3f0a7acdadd7b3 Change-Id: Ie8c334f6223373b8e06df8bd8466500d2a2c8ede
* Merge "Modify compute agent set command"Jenkins2016-07-141-4/+5
|\
| * Modify compute agent set commandsunyajing2016-07-111-4/+5
| | | | | | | | | | | | | | | | | | | | Migrate ``compute agent set`` arguments: version, url, md5hash to be optional. BackwardsIncompatibleImpact Change-Id: I092b7ed24274bafa548f0537c4586504be3a2825 Co-Authored-By: Huanxuan Ao <huanxuan.ao@easystack.cn>
* | Deduplicate get_opts methodsKyrylo Romanenko2016-07-051-1/+1
|/ | | | | | | | One get_opts method can work instead of get_list_opts and get_show_opts both. Remove mutable default value. Change-Id: I9c5683d416f0f3ed4989abab6f152b0341e30a4f
* Fix several flake8 code style issues in compute tests.Kyrylo Romanenko2016-06-241-9/+9
| | | | | | | | Fix issues: H402 one line docstring needs punctuation, W503 line break before binary operator. Change-Id: Ie93430898403f137e7b647a97a28b0d7a4ebb463
* Make SetAgent inherit from cliff.CommandTang Chen2016-02-271-0/+76
set/unset command classes should inherit from cliff.Command class. Also, this patch adds functional tests for compute agent. Change-Id: I25eafffd1167f82aa0d430628c22dee7516b1e19 Partial-Bug: 1546065