@@ -21,37 +21,37 @@ install:
2121 - pip3 install -r requirements.txt
2222 # - pip3 install coveralls
2323
24- script :
25- - awesome_bot README.md --allow-dupe --allow-redirect
26- # Dynamic Programming Tests
27- - python Algorithm_tests/dynamic_programming_tests/knapsack_tests/knapsack_bottomup_test.py
28- - python Algorithm_tests/dynamic_programming_tests/sequence_alignment/sequence_alignment_test.py
29- - python Algorithm_tests/dynamic_programming_tests/weighted_interval_scheduling/weighted_interval_scheduling_test.py
30-
31- # Graph Theory Tests
32- - python Algorithm_tests/graphtheory_tests/bellman_ford_test.py
33- - python Algorithm_tests/graphtheory_tests/kahn_topological_ordering_test.py
34- - python Algorithm_tests/graphtheory_tests/Djikstra/djikstra_heap_test.py
35- - python Algorithm_tests/graphtheory_tests/Djikstra/djikstra_naive_test.py
36- - python Algorithm_tests/graphtheory_tests/kruskal_unionfind_test.py
37- - python Algorithm_tests/graphtheory_tests/prims_algorithm_test.py
38- - python Algorithm_tests/graphtheory_tests/BFS_test.py
39- - python Algorithm_tests/graphtheory_tests/DFS_test.py
40-
41- # Math tests
42- - python Algorithm_tests/other_tests/test_binarysearch.py
43- - python Algorithm_tests/math_tests/intersection_test.py
44- - python Algorithm_tests/math_tests/union_test.py
45-
46- # Cryptography tests
47- - python Algorithm_tests/cryptology_tests/ceasar_test.py
48-
49- # "Other" tests
50- - python Algorithm_tests/other_tests/test_medianmaintenance.py
51- - python Algorithm_tests/other_tests/test_intervalscheduling.py
52-
53- # Sorting tests
54- - python Algorithm_tests/sorting_tests/test_sorting.py
24+ script : pytest
25+ # - awesome_bot README.md --allow-dupe --allow-redirect
26+ # # Dynamic Programming Tests
27+ # - python Algorithm_tests/dynamic_programming_tests/knapsack_tests/knapsack_bottomup_test.py
28+ # - python Algorithm_tests/dynamic_programming_tests/sequence_alignment/sequence_alignment_test.py
29+ # - python Algorithm_tests/dynamic_programming_tests/weighted_interval_scheduling/weighted_interval_scheduling_test.py
30+ #
31+ # # Graph Theory Tests
32+ # - python Algorithm_tests/graphtheory_tests/bellman_ford_test.py
33+ # - python Algorithm_tests/graphtheory_tests/kahn_topological_ordering_test.py
34+ # - python Algorithm_tests/graphtheory_tests/Djikstra/djikstra_heap_test.py
35+ # - python Algorithm_tests/graphtheory_tests/Djikstra/djikstra_naive_test.py
36+ # - python Algorithm_tests/graphtheory_tests/kruskal_unionfind_test.py
37+ # - python Algorithm_tests/graphtheory_tests/prims_algorithm_test.py
38+ # - python Algorithm_tests/graphtheory_tests/BFS_test.py
39+ # - python Algorithm_tests/graphtheory_tests/DFS_test.py
40+ #
41+ # # Math tests
42+ # - python Algorithm_tests/other_tests/test_binarysearch.py
43+ # - python Algorithm_tests/math_tests/intersection_test.py
44+ # - python Algorithm_tests/math_tests/union_test.py
45+ #
46+ # # Cryptography tests
47+ # - python Algorithm_tests/cryptology_tests/ceasar_test.py
48+ #
49+ # # "Other" tests
50+ # - python Algorithm_tests/other_tests/test_medianmaintenance.py
51+ # - python Algorithm_tests/other_tests/test_intervalscheduling.py
52+ #
53+ # # Sorting tests
54+ # - python Algorithm_tests/sorting_tests/test_sorting.py
5555
5656after_success :
5757 # - coveralls
0 commit comments