mirror of
https://github.com/ansible/awx.git
synced 2026-03-21 10:57:36 -02:30
Refactors network_ui_test out of network_ui
* Separates test messages from application messages * Removes test runner and groups, processes, and streams from network_ui * Adds network_ui_test * Fixes routing for network_ui_test * Removes coverage_report tool from network_ui * Fixes network_ui_test test workflow * Sets width and height of the page during tests
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
from channels.routing import route
|
||||
from awx.network_ui.routing import channel_routing as network_ui_routing
|
||||
from awx.network_ui_test.routing import channel_routing as network_ui_test_routing
|
||||
|
||||
|
||||
channel_routing = [
|
||||
@@ -7,6 +9,6 @@ channel_routing = [
|
||||
route("websocket.receive", "awx.main.consumers.ws_receive", path=r'^/websocket/$'),
|
||||
]
|
||||
|
||||
from awx.network_ui.routing import channel_routing as network_routing
|
||||
|
||||
channel_routing += network_routing
|
||||
channel_routing += network_ui_routing
|
||||
channel_routing += network_ui_test_routing
|
||||
|
||||
Reference in New Issue
Block a user