Skip to content

Commit

Permalink
Cleanup .nox environments after build (microsoft#23274)
Browse files Browse the repository at this point in the history
This is needed to clear up some Component Governance issues
  • Loading branch information
karthiknadig committed Apr 22, 2024
1 parent 26d5132 commit 4b32dd4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build/azure-pipeline.pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ extends:

- script: gulp prePublishBundle
displayName: Build

- displayName: Clean up Nox
script: python -c "import shutil; shutil.rmtree('.nox', ignore_errors=True)"
continueOnError: true
tsa:
config:
areaPath: 'Visual Studio Code Python Extensions'
Expand Down
4 changes: 4 additions & 0 deletions build/azure-pipeline.stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ extends:

- script: gulp prePublishBundle
displayName: Build

- displayName: Clean up Nox
script: python -c "import shutil; shutil.rmtree('.nox', ignore_errors=True)"
continueOnError: true
tsa:
config:
areaPath: 'Visual Studio Code Python Extensions'
Expand Down

0 comments on commit 4b32dd4

Please sign in to comment.