Skip to content

Commit 853f141

Browse files
author
Chad Smith
authored
refactor backend and add more unit tests (#350)
1 parent e1cfa77 commit 853f141

23 files changed

+1194
-1062
lines changed

.vulture_whitelist.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
11
_.sessions # unused attribute (noxfile.py:7)
22
_.reuse_existing_virtualenvs # unused attribute (noxfile.py:6)
33
_.secret_key # unused attribute (gdbgui/backend.py:104)
4+
_.reuse_existing_virtualenvs # unused attribute (noxfile.py:6)
5+
_.sessions # unused attribute (noxfile.py:7)
6+
cover # unused function (noxfile.py:50)
7+
lint # unused function (noxfile.py:78)
8+
autoformat # unused function (noxfile.py:94)
9+
docs # unused function (noxfile.py:103)
10+
develop # unused function (noxfile.py:109)
11+
serve # unused function (noxfile.py:118)
12+
publish # unused function (noxfile.py:133)
13+
watch_docs # unused function (noxfile.py:142)
14+
build_executable_current_platform # unused function (noxfile.py:154)
15+
build_executable_mac # unused function (noxfile.py:162)
16+
build_executable_linux # unused function (noxfile.py:169)
17+
build_executable_windows # unused function (noxfile.py:176)
18+
on_connect # unused function (tests/test_backend.py:14)
19+
monkeypatch # unused variable (tests/test_cli.py:23)
20+
monkeypatch # unused variable (tests/test_cli.py:33)
21+
monkeypatch # unused variable (tests/test_cli.py:43)

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# gdbgui release history
22

3+
## 0.14.0.1
4+
* Hide "No registers." message
5+
36
## 0.14.0.0
47
**Breaking Changes**
58
* Removed support for Windows

gdbgui/VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.14.0.0
1+
0.14.0.1

gdbgui/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from . import backend
1+
from . import cli
22

3-
backend.main()
3+
cli.main()

0 commit comments

Comments
 (0)