Skip to content

Commit f4f601f

Browse files
authored
Update logging in CI/CD for debug
1 parent 9f4a7d1 commit f4f601f

File tree

1 file changed

+29
-5
lines changed

1 file changed

+29
-5
lines changed

.github/workflows/minitorch.yml

Lines changed: 29 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,47 @@ jobs:
2828
# flake8 --ignore "N801, E203, E266, E501, W503, F812, F401, F841, E741, N803, N802, N806" minitorch/ tests/ project/
2929
- name: Test with pytest
3030
run: |
31-
echo "Basic functionalities tests"
31+
echo "basic_math_ops test"
3232
pytest tests -x -m basic_math_ops
33+
34+
echo "basic_math_properties test"
3335
pytest tests -x -m basic_math_properties
36+
37+
echo "high_order_fn test"
3438
pytest tests -x -m high_order_fn
39+
40+
echo "test_module_simple test"
3541
pytest tests -x -m test_module_simple
36-
echo "Autodiff tests"
42+
43+
echo "scalar test"
3744
pytest tests -x -m scalar
45+
46+
echo "derivative test"
3847
pytest tests -x -m derivative
48+
49+
echo "chain_rule test"
3950
pytest tests -x -m chain_rule
51+
52+
echo "backprop test"
4053
pytest tests -x -m backprop
41-
echo "Tensor tests"
54+
55+
echo "tensor_data test"
4256
pytest tests -x -m tensor_data
57+
58+
echo "tensor_fn test"
4359
pytest tests -x -m tensor_fn
44-
echo "CPU and CUDA operators tests"
60+
61+
echo "fast_ops test"
4562
pytest tests -x -m fast_ops
63+
64+
echo "cuda_ops test"
4665
pytest tests -x -m cuda_ops
47-
echo "NN tests"
66+
67+
echo "fast_conv test"
4868
pytest tests -x -m fast_conv
69+
70+
echo "nn_layers test"
4971
pytest tests -x -m nn_layers
72+
73+
echo "cuda_conv test"
5074
pytest tests -x -m cuda_conv

0 commit comments

Comments
 (0)