- Removes an inappropriate condition for the device deletion button
- Fixes a jquery selector for the confirmation dialog that pops up on
deletion
Change-Id: I0a4c7dd5782524a875bf208d4ea63ac6df4a62b4
Closes-Bug: 1781911
Since the horizon remove the 'run_tests.sh' file,
so there should remove '.venv' from the '.tox.ini' file.
Change-Id: I3f956521ac1af37df77961991eddbfc0a3afb718
Added batch and item delete actions to network_qos panel.
To test the network_qos panel, either take the current patch or the
latest change in the series and then build devstack with neutron qos
support. Eg:
local.conf:
enable_plugin neutron git://git.openstack.org/openstack/neutron
enable_service q-qos
You will also need to amend the horizon enabled file to enable the
plugin as it is currently disabled by default:
_1510_project_network_qos_panel.py:
Remove or comment line 13 'DISABLED = True
The panel should then appear under Project > Network > Network QoS
Implements: blueprint network-bandwidth-limiting-qos
Change-Id: I97289d4f666fd66c71fda713ad29634bb270e2fc
Browser support list was removed from the noVNC wiki, but a summary is
still in their README.
Change-Id: I6bb3cd4462f40ba06aebaffd85dc9cda0e87164b
Closes-Bug: #1778424
This commit adds two new tox environments for bandit scanner. To run any
of them you can use tox commands:
1) 'tox -e bandit' to run bandit scanner against all the code
2) 'tox -e bandit-baseline' to run bandit scanner only against the last
commit or the current changes.
Bandit job uses 'bandit-baseline' tox environment to veryfy that no new
issues were introduced.
Change-Id: I1fc3bb0d5d151f215b9efc916f921fabaa72e7d8
The /identity url may have more resources than project page so it loads slowly.
We can improve user experience by setting different login url.
Change-Id: I6ce91974d101d80e9685826dc4e6a6495e6a5da3
Closes-Bug: #1778006
* Define py35 commands in a single place.
Previously it was defined in [testenv] and [testenv:py35].
* py35 env should use python3.5 instead of python3
because pyNN job is specific to a specific python version.
In addition, python version is automatically assumed by tox.
* Sort env definitions in the order of unit tests, other testing stuffs
with 'testenv:' prefix and finally non testenv stuffs (like flake8).
* Drop testenv:manage-py35dj20 because testenv:manage now uses
python 3.5 and Django 2.0.
* Avoid using dict-style env commands definitions.
In OpenStack projects, we usually use [testenv:xxxx] style.
Change-Id: Ib55031a50a51f952b738f0fdf33313fa2c7522ff
* fixed 37 tests in total
* restructured and renamed test modules as per horizon
* fixed page navigation & updated method calls
* fixed css selector and xpaths as per horizon
* Removed decorators.skip for working tests
* included decorators.skip for non - working tests
* updated description for tests as per horizon navigation
* removed *update flavor info* and *update flavor access* test, as feature unavailable on horizon
* updated table column name references in page modules
* updated bind table action names as per horizon
* included help page navigation checkpoint
* fixed rc file download drop down selection
* updated page titles in test modules
* included calls as required for spinner disappearance
* updated form fields as per test needs
* updated default ipv4 and subnet for router interfaces
* included string conversion as required for comparisons
* updated cirros image name in horizon.conf
Change-Id: I9fdc810b37443b616bbb82956d1c90a0fa5ebd6b
After 7e91070789187d9e6b5ac2b57ca755504e058e32 in openstack/requirements
repo, all entries in project requirements.txt must have lower bound
although we don't track lower bound in global-requirements.txt.
This commit re-adds Django lower bound.
Change-Id: I065e1bd904975f10bdcaacef7b0ad1336915492a
Code was stripping last char from path when expiring the cookie that
controls profiling. For example, cookie created at /admin/info/
was being expired as /admin/info without final "/". This can fail
to find the cookie (browser dependent?) and leave profiling active
for all subsequent refreshes of the view.
Change-Id: I71d36ab3ff121cc43b8d0b43a056ba26aa030058
Commit I7fb2fd7dd40f301ea822154b9809a9a07610c507 from integration tests
run by incorrect syntax of posargs argument. This patch fixes it.
Change-Id: I5882556a1b346ac40fe68b06772c4b349f70dfbc
Follow-up patch for https://review.openstack.org/#/c/543231/
No indent, 2-char indent and 4-char indent are used mixedly.
TrivialFix
Change-Id: I6e190d49c0ba908ab87b4d810ebbec70ee184b15
Related-Bug: #1716834