-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update centrally managed files #6
Closed
Closed
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
1595e79
update .gitignore
soleng-terraform[bot] 70b4b1a
update .gitignore
soleng-terraform[bot] 4d05427
update .github/workflows/release.yaml
soleng-terraform[bot] 979908f
update .github/workflows/check.yaml
soleng-terraform[bot] a831109
update .github/workflows/release.yaml
soleng-terraform[bot] a4749b5
update .gitignore
soleng-terraform[bot] 118b54b
update .github/workflows/check.yaml
soleng-terraform[bot] 2ee8edf
update .github/workflows/release.yaml
soleng-terraform[bot] 80b19f8
update .gitignore
soleng-terraform[bot] 9684642
update .github/workflows/check.yaml
soleng-terraform[bot] 033197b
update .github/workflows/release.yaml
soleng-terraform[bot] 1b8452b
update .gitignore
soleng-terraform[bot] 937f76e
update .github/workflows/check.yaml
soleng-terraform[bot] f680c59
update .github/workflows/check.yaml
soleng-terraform[bot] f185426
update .github/workflows/release.yaml
soleng-terraform[bot] fde1d58
update .gitignore
soleng-terraform[bot] 2abba86
update .gitignore
soleng-terraform[bot] 3c86651
update .github/workflows/release.yaml
soleng-terraform[bot] 770dcaf
update .github/workflows/check.yaml
soleng-terraform[bot] d0ca6d4
update .github/workflows/release.yaml
soleng-terraform[bot] 56b2daa
update .gitignore
soleng-terraform[bot] bd7bb3b
update .github/workflows/check.yaml
soleng-terraform[bot] 8d8372d
update .gitignore
soleng-terraform[bot] 5d8558a
update .github/workflows/release.yaml
soleng-terraform[bot] d8c9621
update .github/workflows/check.yaml
soleng-terraform[bot] ec8d2ec
update .gitignore
soleng-terraform[bot] de24a97
update .github/workflows/release.yaml
soleng-terraform[bot] f937c5c
update .github/workflows/check.yaml
soleng-terraform[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,11 +1,45 @@ | ||
# Environments | ||
.env | ||
# This file is centrally managed as a template file in https://github.com/canonical/solutions-engineering-automation | ||
# To update the file: | ||
# - Edit it in the canonical/solutions-engineering-automation repository. | ||
# - Open a PR with the changes. | ||
# - When the PR merges, the soleng-terraform bot will open a PR to the target repositories with the changes. | ||
|
||
# Python Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# Test files and directories | ||
.pytest_cache/ | ||
.coverage | ||
.tox | ||
reports/ | ||
**/report/ | ||
htmlcov/ | ||
.mypy_cache | ||
|
||
# python virtual environments (for local dev) | ||
.venv | ||
env/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
venv | ||
env | ||
|
||
# Snap | ||
# Build artefacts | ||
output/ | ||
.build/ | ||
build/ | ||
*.charm | ||
*.snap | ||
# python build artefacts | ||
deb_dist/ | ||
dist/ | ||
*.egg-info/ | ||
|
||
# Log files | ||
*.log | ||
|
||
# general backup files | ||
*~ | ||
*.bak | ||
|
||
# Note: for editor-specific files, please don't add them here, as they are specific to your environment, not the project. | ||
# Instead, consider using a global gitignore on your workstation. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this repo doesn't have a tox file, or any functional tests, so maybe we can't use this template :/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can add func test, and just do an endpoint testing because we don't necessarily have smart devices in the CI environment.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a prefect case that using tox as an interface will encounterIt's ok to create an exception for this case right now from my point of view.