Skip to content

Commit

Permalink
refactor backend and add more unit tests (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chad Smith committed Aug 24, 2020
1 parent e1cfa77 commit 853f141
Show file tree
Hide file tree
Showing 23 changed files with 1,194 additions and 1,062 deletions.
18 changes: 18 additions & 0 deletions .vulture_whitelist.py
@@ -1,3 +1,21 @@
_.sessions # unused attribute (noxfile.py:7)
_.reuse_existing_virtualenvs # unused attribute (noxfile.py:6)
_.secret_key # unused attribute (gdbgui/backend.py:104)
_.reuse_existing_virtualenvs # unused attribute (noxfile.py:6)
_.sessions # unused attribute (noxfile.py:7)
cover # unused function (noxfile.py:50)
lint # unused function (noxfile.py:78)
autoformat # unused function (noxfile.py:94)
docs # unused function (noxfile.py:103)
develop # unused function (noxfile.py:109)
serve # unused function (noxfile.py:118)
publish # unused function (noxfile.py:133)
watch_docs # unused function (noxfile.py:142)
build_executable_current_platform # unused function (noxfile.py:154)
build_executable_mac # unused function (noxfile.py:162)
build_executable_linux # unused function (noxfile.py:169)
build_executable_windows # unused function (noxfile.py:176)
on_connect # unused function (tests/test_backend.py:14)
monkeypatch # unused variable (tests/test_cli.py:23)
monkeypatch # unused variable (tests/test_cli.py:33)
monkeypatch # unused variable (tests/test_cli.py:43)
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
# gdbgui release history

## 0.14.0.1
* Hide "No registers." message

## 0.14.0.0
**Breaking Changes**
* Removed support for Windows
Expand Down
2 changes: 1 addition & 1 deletion gdbgui/VERSION.txt
@@ -1 +1 @@
0.14.0.0
0.14.0.1
4 changes: 2 additions & 2 deletions gdbgui/__main__.py
@@ -1,3 +1,3 @@
from . import backend
from . import cli

backend.main()
cli.main()

0 comments on commit 853f141

Please sign in to comment.