From ca2438f78bcc11bc205a29899d34464f3f99aeb2 Mon Sep 17 00:00:00 2001 From: mpenning Date: Thu, 30 Nov 2023 04:21:16 -0600 Subject: [PATCH] Update documentation --- CHANGES.md | 7 +++++++ README.md | 7 ++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 782f978..b6e4310 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,13 @@ - Summary: - Insert something here +## Version: 1.9.45 + +- Released: 2023-11-29 +- Summary: + - Documentation updates + - Remove `ccp_abc.BaseCfgLine()._objects_to_uncfg()` + ## Version: 1.9.44 - Released: 2023-11-29 diff --git a/README.md b/README.md index 989cd0d..db75e5b 100644 --- a/README.md +++ b/README.md @@ -353,6 +353,7 @@ network engineering toolbox; others regard it as a form of artwork. - [passlib](https://github.com/glic3rinu/passlib) - [toml](https://github.com/uiri/toml) - [dnspython](https://github.com/rthalley/dnspython) +- [hier_config](https://github.com/netdevops/hier_config) - [loguru](https://github.com/Delgan/loguru) - [deprecated](https://github.com/tantale/deprecated) @@ -382,11 +383,15 @@ $ pytest -vvs ./test_*py ... ``` -### Execute Miss Report +### Execute Test Coverage Line-Miss Report If you already have have `pytest` and `pytest-cov` installed, run a test line miss report as shown below. ```shell +$ # Install the latest ciscoconfparse +$ # (assuming the latest code is on pypi) +$ pip install -U ciscoconfparse +$ pip install -U pytest-cov $ cd tests $ pytest --cov-report=term-missing --cov=ciscoconfparse ./ ...