-
Notifications
You must be signed in to change notification settings - Fork 361
Poetry error message #852
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
Merged
eljog
merged 14 commits into
devcontainers:main
from
prathameshzarkar9:poetry-error-message
Nov 21, 2024
Merged
Poetry error message #852
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
985c525
testing the usecase
prathameshzarkar9 5c5e451
error message thrown for the command not found
prathameshzarkar9 23a5670
semicolon was missing
prathameshzarkar9 bc46532
unwanted changes reverted and also added command output for the error
prathameshzarkar9 415ebec
review comments addressed
prathameshzarkar9 3a16101
moved the cmdOutput to runRemoteCommand function for all the commands
prathameshzarkar9 c99c89d
refactored code and moved outer catch block to inner catch block
prathameshzarkar9 e0320d5
try catch block added for per lifecycleHook
prathameshzarkar9 8dc040c
await promise changes
prathameshzarkar9 2a1e838
Merge branch 'devcontainers:main' into poetry-error-message
prathameshzarkar9 1f12fe8
test case fixed
prathameshzarkar9 0805d6f
unwanted code removed
prathameshzarkar9 be1fbd7
file name changed
prathameshzarkar9 5d72242
Fixes
chrmarti 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| // Example devcontainer.json configuration, | ||
| // wired into the vscode launch task (.vscode/launch.json) | ||
| { | ||
| "image": "mcr.microsoft.com/devcontainers/base:latest", | ||
| "features": { | ||
| "ghcr.io/devcontainers/features/python:1": { | ||
| "version": "latest" | ||
| } | ||
| }, | ||
| "postStartCommand": { | ||
| "poetry setup": [ | ||
| "/bin/bash", | ||
| "-i", | ||
| "-c", | ||
| "python3 -m venv $HOME/.local && source $HOME/.local/bin/activate && poetry install" | ||
| ] | ||
| } | ||
| } |
This file contains hidden or 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
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.
Uh oh!
There was an error while loading. Please reload this page.