-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The only supported workflow for developing in this repository should be using the devcontainer: Update extensions to remove unused ones and add only: - python - mypy - flake8 - pytest - robottest The python modules are now installed into a venv, because the global installation in the devcontainer could belong to a user with a different UID due to the way the devcontainers work. The local venv is picked up by vscode and used for all vscode extensions and in the console automatically.
- Loading branch information
Showing
8 changed files
with
34 additions
and
58 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 |
---|---|---|
|
@@ -2,19 +2,22 @@ | |
// README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu | ||
{ | ||
"name": "EB corbos Linux build tools", | ||
"image": "ghcr.io/elektrobit/ebcl_dev_container:v1.4.6", | ||
"image": "ghcr.io/elektrobit/ebcl_dev_container:v1.4.9", | ||
// This script will get the container and tag it with the local container tag. | ||
"initializeCommand": "${PWD}/init_workspace", | ||
"postCreateCommand": "${PWD}/setup_workspace", | ||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
"python.terminal.activateEnvInCurrentTerminal": true, | ||
"cmake.options.statusBarVisibility": "visible", | ||
"cmake.configureOnOpen": false | ||
}, | ||
"extensions": [ | ||
"[email protected]", | ||
"[email protected]" | ||
"ms-python.python", | ||
"ms-python.mypy-type-checker", | ||
"ms-python.flake8", | ||
"littlefoxteam.vscode-python-test-adapter", | ||
"d-biehl.robotcode" | ||
] | ||
} | ||
}, | ||
|
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,6 +1,9 @@ | ||
flake8==7.1.1 | ||
Flake8-pyproject==1.2.3 | ||
pytest==8.3.3 | ||
flake8==7.1.1 | ||
mypy==1.13.0 | ||
types-requests | ||
pytest-cov==6.0.0 | ||
pytest==8.3.3 | ||
robotframework==7.2 | ||
types-PyYAML | ||
types-requests | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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