-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update Testing Name (#34) renamed host * Docs/Tests (#35) * readme * Refactoring testing to be consistent in local and CI env Co-authored-by: Hugo Tinoco <[email protected]> * Recreating (#37) * Hasattr (#36) * Sros integration (#38) * Device Params (#42) * Testing device-params * changelog update * README * housekeeping * actually, allowing flexibility and preference in extras * collapse deviceparams * coverage * integration / unit 100 coverage * warnings * simplified, but same logic exists * Bump paramiko from 2.9.2 to 2.9.3 (#43) Bumps [paramiko](https://github.com/paramiko/paramiko) from 2.9.2 to 2.9.3. - [Release notes](https://github.com/paramiko/paramiko/releases) - [Changelog](https://github.com/paramiko/paramiko/blob/main/NEWS) - [Commits](paramiko/paramiko@2.9.2...2.9.3) --- updated-dependencies: - dependency-name: paramiko dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump lxml from 4.7.1 to 4.9.1 (#41) Bumps [lxml](https://github.com/lxml/lxml) from 4.7.1 to 4.9.1. - [Release notes](https://github.com/lxml/lxml/releases) - [Changelog](https://github.com/lxml/lxml/blob/master/CHANGES.txt) - [Commits](lxml/lxml@lxml-4.7.1...lxml-4.9.1) --- updated-dependencies: - dependency-name: lxml dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * deps (#44) * doc build on main only (#45) * release v1.1.0 (#46) * Revert "release v1.1.0 (#46)" (#48) This reverts commit 4ff3d90. * Feature/pipeline (#49) * release v1.1.0 * branch name * workflow * changelog Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Hugo Tinoco <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
fa99a65
commit 96964f3
Showing
51 changed files
with
895 additions
and
1,207 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
# .coveragerc to control coverage.py | ||
[run] | ||
branch = True | ||
source = vip_tracker | ||
|
||
[report] | ||
show_missing = true | ||
show_missing = True | ||
|
||
exclude_lines = | ||
__init__.py | ||
if self.debug: | ||
self.connection.close_session() | ||
parameters["ssh_config"] = ssh_config_file | ||
pragma: no cover | ||
raise NotImplementedError | ||
if __name__ == .__main__.: | ||
|
||
omit = | ||
nornir_netconf/__init__.py | ||
tests/* | ||
|
||
ignore_errors = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.