File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 1515 python -m pip install flake8
1616 flake8 .
1717 displayName: 'Run lint tests'
18+ enabled: false
1819
1920 - task : Bash@3
2021 displayName : ' Install Requirements'
@@ -36,6 +37,12 @@ steps:
3637- script : ' python code/testing/data_test.py data/diabetes.csv && python code/testing/data_test.py data/diabetes_bad_dist.csv && python code/testing/data_test.py data/diabetes_bad_schema.csv && python code/testing/data_test.py data/diabetes_missing_values.csv'
3738 displayName : ' Data Quality Check'
3839
40+ - script : |
41+ pip install pytest
42+ pip install pytest-cov
43+ pytest tests --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
44+ displayName : ' Test with pytest'
45+
3946- script : ' python aml_service/00-WorkSpace.py'
4047 displayName : ' Get or Create workspace copy'
4148
You can’t perform that action at this time.
0 commit comments