Skip to content
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

Renamed some of the headings in tasks.json #48

Merged
merged 1 commit into from
Jul 23, 2024
Merged
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
50 changes: 25 additions & 25 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,80 +5,80 @@
"problemMatcher": [],
"tasks": [
{
"label": "Set up dev environment",
"args": [
"scripts/set_up_dev_environment.py"
],
"detail": "Install all dependencies"
},
{
"label": "Create venv",
"label": "Create environment",
"command": "py",
"args": [
"-${input:py_version}",
"-m",
"venv",
".env"
],
"detail": "Create a new python virtual environment"
"detail": "Creates a new python virtual environment.",
},
{
"label": "Install dependencies in development environment",
"args": [
"scripts/set_up_dev_environment.py"
],
"detail": "Installs all dependencies in development environment."
},
{
"label": "Pytest",
"label": "Run all tests",
"args": [
"scripts/pytest_.py"
],
"detail": "Run all tests correctly"
"detail": "Runs all tests using Pytest."
},
{
"label": "Black",
"label": "Format code",
"args": [
"scripts/lint_tools.py",
"--format-code"
],
"presentation": {
"clear": true
},
"detail": "Format code"
"detail": "Formats code using the Black formatter."
},
{
"label": "Lint",
"label": "Run lint tools",
"args": [
"scripts/lint_tools.py",
"--${input:lint_tool}"
],
"presentation": {
"clear": true
},
"detail": "Run lint tools, black_check mypy pylint pycodestyle pdoc3"
"detail": "Runs the one or more of the following lint tools: Black_check, Mypy, Pylint, Pycodestyle and Pdoc3."
},
{
"label": "Pdoc3",
"label": "Generate documentation",
"args": [
"scripts/pdoc3.py",
"--${input:pdoc3_server}"
],
"presentation": {
"clear": true
},
"detail": "generate documentation"
"detail": "Generates documentation using Pdoc3."
},
{
"label": "py coverage",
"label": "Generate code coverage",
"args": [
"scripts/coverage.py",
"--${input:coverage_tool}"
],
"detail": "Generate code coverage"
"detail": "Generates code coverage using \"py coverage\"."
},
{
"label": "Build",
"label": "Lint, generate documentation and build package",
"args": [
"scripts/build.py"
],
"detail": "lint and generate documentation then builds the the package"
"detail": "Lints and generates documentation then builds the the package."
},
{
"label": "Save credential to keyring",
"label": "Save credentials to keyring.",
"args": [
"macrobond_data_api/util/save_credentials_to_keyring.py"
],
Expand All @@ -89,15 +89,15 @@
"scripts/code_generation.py",
"--generate"
],
"detail": "Generate code for the duplicated code in web and com"
"detail": "Generates code for the duplicated parts in web and COM."
},
{
"label": "jupyter",
"label": "Verify or scrub Jupyter Notebooks",
"args": [
"scripts/jupyter.py",
"--${input:jupyter}"
],
"detail": "Verify or scrub jupyter files"
"detail": "Verifys or scrubs Jupyter files."
}
],
"inputs": [
Expand Down