Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@
"-W ignore::DeprecationWarning"
],
"python.testing.cwd": "${workspaceFolder}",
"bandit.args": [
"--config=${workspaceFolder}/pyproject.toml"
],
"files.associations": {
"*.terraform": "terraform"
},
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
ENHANCEMENTS:
* Update UI dependencies: `brace-expansion` to 1.1.18, `fast-uri` to 3.1.5, `immutable` to 5.1.9, `js-yaml` to 4.3.1, `nanoid` to 3.3.18, and `postcss` to 8.5.26. ([#5056](https://github.com/microsoft/AzureTRE/pull/5056))

BUG FIXES:
* Configure Bandit to ignore test directories. ([#5057](https://github.com/microsoft/AzureTRE/issues/5057))

## (0.29.0) (August 14, 2026)
**BREAKING CHANGES**
* Remove Windows 10 and dsvm image support from Guacamole. ([#4890](https://github.com/microsoft/AzureTRE/issues/4890))
Expand Down
9 changes: 9 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,12 @@
skip = "*.json,*.js,*.ts,*.tsx,*.map,package-lock.json,node_modules,.venv,.git,.yaspeller*,**/*devcontainer*,.gitignore,.gitattributes,LICENSE,Makefile,**/.dockerignore,**/Dockerfile,**/*.tf*,**/*.terraform*,**/requirements.txt,**/*.py,**/*.yml,**/*.yaml,**/*.sh,**/.env.tmpl,**/requirements-dev.txt"
# Words to ignore
ignore-words-list = "tre,aci,requestor,api,AspNet,az,AzureTRE,Codespaces,Conda,dataset,datasets,dev,Dev,DevOps,DotNet,exfiltration,Endpoints,GitHub,lifecycle,maintainer,maintainers,PowerShell,PyPi,QuickStart,quickstart,repo,repos,screenshots,terraform,Terraform,tfvars,tmpl,TREs,Xamarin,devcontainer,DevContainer,endpoints,pytest,tre,VNet,resourceType,isCurrent,msfttreacr,azurecr,io,azuretre,cnab,aci,westeurope,idempotent,Versioning,mixins,yml,microsoft,pre-emptively "

[tool.bandit]
exclude_dirs = [
".venv",
"e2e_tests",
"api_app/tests_ma",
"resource_processor/tests_rp",
"airlock_processor/tests",
]
Loading