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:
37
37
run : pip install --progress-bar=off scipy pycocotools h5py iopath
38
38
39
39
- 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
41
41
42
42
- name : Run prototype datasets tests
43
43
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
45
50
46
51
- name : Run prototype transforms tests
47
52
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
49
59
50
60
- name : Run prototype models tests
51
61
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