File tree Expand file tree Collapse file tree 1 file changed +19
-4
lines changed
Expand file tree Collapse file tree 1 file changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -37,16 +37,31 @@ jobs:
3737 run : pip install --progress-bar=off scipy pycocotools h5py iopath
3838
3939 - name : Install test requirements
40- run : pip install --progress-bar=off pytest pytest-mock
40+ run : pip install --progress-bar=off pytest pytest-mock pytest-cov
4141
4242 - name : Run prototype datasets tests
4343 shell : bash
44- run : pytest --durations=20 test/test_prototype_datasets*.py
44+ run : |
45+ pytest \
46+ --durations=20 \
47+ --cov=torchvision/prototype/datasets \
48+ --cov-report=term-missing \
49+ test/test_prototype_datasets*.py
4550
4651 - name : Run prototype transforms tests
4752 shell : bash
48- run : pytest --durations=20 test/test_prototype_transforms*.py
53+ run : |
54+ pytest \
55+ --durations=20 \
56+ --cov=torchvision/prototype/transforms \
57+ --cov-report=term-missing \
58+ test/test_prototype_transforms*.py
4959
5060 - name : Run prototype models tests
5161 shell : bash
52- run : pytest --durations=20 test/test_prototype_models*.py
62+ run : |
63+ pytest \
64+ --durations=20 \
65+ --cov=torchvision/prototype/models \
66+ --cov-report=term-missing \
67+ test/test_prototype_models*.py
You can’t perform that action at this time.
0 commit comments