mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-08 17:11:48 -05:00
* 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
14 lines
194 B
Makefile
14 lines
194 B
Makefile
|
|
SERVER = "https://meganuke:8043"
|
|
PORT = "9000"
|
|
|
|
.PHONY: clean coverage
|
|
|
|
clean:
|
|
git clean -fdX .
|
|
git clean -fd .
|
|
|
|
coverage:
|
|
./coverage_report.py ${SERVER}
|
|
python -m SimpleHTTPServer ${PORT}
|