diff options
| author | Dmitry Tantsur <dtantsur@protonmail.com> | 2020-09-04 17:07:55 +0200 |
|---|---|---|
| committer | Dmitry Tantsur <dtantsur@protonmail.com> | 2020-09-04 17:10:41 +0200 |
| commit | 9b75453339155fdcfd1196d5c39c87cca67ed473 (patch) | |
| tree | 63a8821d78339bd28daed6bfdc1b2a29f716f9dc | |
| parent | e73b7220c4efc23f34dbac77c3778cf82a0b2f18 (diff) | |
| download | ironic-python-agent-9b75453339155fdcfd1196d5c39c87cca67ed473.tar.gz | |
Fix and run the correct functional tests job
Apparently, functional-py36 just runs unit tests.
Fix the test that has regressed in the meantime and make it voting
so that we don't regress again.
Change-Id: Id5efe89a12a00c27e6299380a51cdb840285d691
| -rw-r--r-- | ironic_python_agent/tests/functional/test_commands.py | 2 | ||||
| -rw-r--r-- | zuul.d/project.yaml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ironic_python_agent/tests/functional/test_commands.py b/ironic_python_agent/tests/functional/test_commands.py index 235b47d5..c2b84cab 100644 --- a/ironic_python_agent/tests/functional/test_commands.py +++ b/ironic_python_agent/tests/functional/test_commands.py @@ -24,7 +24,7 @@ class TestCommands(base.FunctionalBase): different test runs. """ - node = {'uuid': '1', 'properties': {}} + node = {'uuid': '1', 'properties': {}, 'instance_info': {}} def step_1_get_empty_commands(self): response = self.request('get', 'commands') diff --git a/zuul.d/project.yaml b/zuul.d/project.yaml index 56d42832..38b49503 100644 --- a/zuul.d/project.yaml +++ b/zuul.d/project.yaml @@ -8,6 +8,7 @@ - release-notes-jobs-python3 check: jobs: + - openstack-tox-functional - ipa-tox-examples # NOTE(iurygregory) Only run this two jobs since we are testing # wholedisk + partition on tempest @@ -24,13 +25,12 @@ # Non-voting jobs - ipa-tempest-ironic-inspector-src: voting: false - - openstack-tox-functional-py36: - voting: false - ipa-tox-bandit: voting: false gate: queue: ironic jobs: + - openstack-tox-functional - ipa-tempest-bios-ipmi-direct-src - ipa-tempest-bios-ipmi-iscsi-src - ironic-standalone-ipa-src |
