Skip to content

Commit ef49b76

Browse files
Updated .yml file
1 parent 9eeb6d5 commit ef49b76

1 file changed

Lines changed: 46 additions & 1 deletion

File tree

.github/workflows/python-ci.yml

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,49 @@ jobs:
2424
pip install python-dateutil
2525
2626
- name: Run OOP tests
27-
run: pytest "OOP_Exercises/tests"
27+
run: |
28+
pytest "OOP_Exercises/tests"
29+
30+
- name: Run String Exercise tests
31+
run: |
32+
pytest "String Exercise/tests"
33+
34+
- name: Run Functions Exercise tests
35+
run: |
36+
pytest "Functions Exercise/tests"
37+
38+
- name: Run Fast Tests
39+
run: |
40+
pytest "Random Data Generation Exercise/tests"
41+
42+
- name: Run Python Input and Output Exercise tests
43+
run: |
44+
pytest "Python_Input_and_Output_Exercise/tests"
45+
46+
- name: Run Data Structure Exercise tests
47+
run: |
48+
pytest "Data Structure Exercise/tests"
49+
50+
- name: Run Date and Time Exercise tests
51+
run: |
52+
pytest "Date and Time Exercise/tests"
53+
54+
- name: Run Loop Exercise tests
55+
run: |
56+
pytest "Loop_Exercise/tests"
57+
58+
- name: Run File Handling Exercises tests
59+
run: |
60+
pytest "File Handling Exercises/tests"
61+
62+
- name: Run Python Basic Exercise tests
63+
run: |
64+
pytest "Python Basic Exercise/tests"
65+
66+
- name: Run Python List Exercise tests
67+
run: |
68+
pytest "Python List Exercise/tests"
69+
70+
- name: Run Python Dictionary Exercise tests
71+
run: |
72+
pytest "Python Dictionary Exercise/tests"

0 commit comments

Comments
 (0)