mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 01:54:18 -08:00
* added score D * Adding Score D to usa-low * rounding score d * small vscode update * last couple of vscode changes * uncommited bscode changes
49 lines
1 KiB
JSON
49 lines
1 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Test with tox",
|
|
"type": "shell",
|
|
"command": "tox",
|
|
"group": {
|
|
"kind": "test",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "Run Black Formatter",
|
|
"type": "shell",
|
|
"command": "black",
|
|
"args": [
|
|
"data_pipeline"
|
|
]
|
|
},
|
|
{
|
|
"label": "Run Flake8 Style Enforcer",
|
|
"type": "shell",
|
|
"command": "black",
|
|
"args": [
|
|
"data_pipeline"
|
|
]
|
|
},
|
|
{
|
|
"label": "Run Pylint",
|
|
"type": "shell",
|
|
"command": "pylint",
|
|
"args": [
|
|
"data_pipeline"
|
|
]
|
|
},
|
|
{
|
|
"label": "Upload tiles to S3",
|
|
"type": "shell",
|
|
"command": "aws s3 sync ./data_pipeline/data/score/tiles/ s3://justice40-data/data-pipeline/data/score/tiles --acl public-read --delete",
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new"
|
|
}
|
|
},
|
|
]
|
|
}
|