j40-cejst-2/data/data-pipeline/.vscode/tasks.json
Lucas Merrill Brown 65ceb7900f
Score F, testing methodology (#510)
* fixing dependency issue

* fixing more dependencies

* including fraction of state AMI

* wip

* nitpick whitespace

* etl working now

* wip on scoring

* fix rename error

* reducing metrics

* fixing score f

* fixing readme

* adding dependency

* passing tests;

* linting/black

* removing unnecessary sample

* fixing error

* adding verify flag on etl/base

Co-authored-by: Jorge Escobar <jorge.e.escobar@omb.eop.gov>
2021-08-24 16:40:54 -04:00

40 lines
762 B
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"
]
}
]
}