-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #484 from nautobot/develop
Develop to main for release
- Loading branch information
Showing
53 changed files
with
971 additions
and
1,485 deletions.
There are no files selected for viewing
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,5 +1,7 @@ | ||
--- | ||
skips: [] | ||
# No need to check for security issues in the test scripts! | ||
exclude_dirs: | ||
# No need to check for security issues in the test scripts! | ||
- "./tests/" | ||
# Ignore locally installed collection | ||
- "./collections/" |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
nautobot-bgp-models==0.20.0 | ||
nautobot-bgp-models==2.3.0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ansible-core==2.15.12 | ||
ansible-core==2.18 | ||
mkdocs==1.6.1 | ||
mkdocs-ansible-collection==0.2.0 | ||
mkdocs-material==9.5.30 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Usage: ./hacking/local-test.sh | ||
################################################################################ | ||
# DEPRECATED | ||
# Run `invoke unit` or `invoke integration` to run the tests locally instead! | ||
################################################################################ | ||
|
||
# Run build, which will remove previously installed versions | ||
./hacking/build.sh | ||
# # Usage: ./hacking/local-test.sh | ||
|
||
# Install new built version | ||
ansible-galaxy collection install networktocode-nautobot-*.tar.gz -p . | ||
# # Run build, which will remove previously installed versions | ||
# ./hacking/build.sh | ||
|
||
# You can now cd into the installed version and run tests | ||
(cd ansible_collections/networktocode/nautobot/ && ansible-test units -v --python 3.9 && ansible-test sanity --requirements -v --python 3.9 --skip-test pep8 plugins/) | ||
rm -rf ansible_collections | ||
# # Install new built version | ||
# ansible-galaxy collection install networktocode-nautobot-*.tar.gz -p . | ||
|
||
# # You can now cd into the installed version and run tests | ||
# (cd ansible_collections/networktocode/nautobot/ && ansible-test units -v --python 3.9 && ansible-test sanity --requirements -v --python 3.9 --skip-test pep8 plugins/) | ||
# rm -rf ansible_collections |
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,12 +1,17 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Usage: ./hacking/make-docs.sh | ||
################################################################################ | ||
# DEPRECATED | ||
# Run `invoke docs` to host the docs locally instead! | ||
################################################################################ | ||
|
||
# Run build, which will remove previously installed versions | ||
./hacking/build.sh | ||
# # Usage: ./hacking/make-docs.sh | ||
|
||
# Install new built version | ||
ansible-galaxy collection install networktocode-nautobot-*.tar.gz -f | ||
# # Run build, which will remove previously installed versions | ||
# ./hacking/build.sh | ||
|
||
# Run antisbull-docs now | ||
antsibull-docs collection --use-current --squash-hierarchy --dest-dir docs/plugins/ networktocode.nautobot | ||
# # Install new built version | ||
# ansible-galaxy collection install networktocode-nautobot-*.tar.gz -f | ||
|
||
# # Run antisbull-docs now | ||
# antsibull-docs collection --use-current --squash-hierarchy --dest-dir docs/plugins/ networktocode.nautobot |
Oops, something went wrong.