forked from aladdinpersson/Algorithms-Collection-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
25 lines (21 loc) · 990 Bytes
/
.travis.yml
File metadata and controls
25 lines (21 loc) · 990 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
language: python
# Default Python version is usually 2.7
python: 3.7
# Install ruby to get gem command
before_install:
- sudo apt-add-repository -y ppa:brightbox/ruby-ng
- sudo apt-get -y update
- sudo apt-get -y install ruby-full
before_script:
- gem install awesome_bot
script:
- awesome_bot README.md --allow-dupe --allow-redirect
- python Algorithm_tests/dynamic_programming_tests/knapsack_tests/knapsack_bottomup_test.py
- python Algorithm_tests/dynamic_programming_tests/sequence_alignment/sequence_alignment_test.py
- python Algorithm_tests/graphtheory_tests/bellman_ford_test.py
- python Algorithm_tests/other_tests/test_binarysearch.py
- python Algorithm_tests/math_tests/intersection_test.py
- python Algorithm_tests/math_tests/union_test.py
- python Algorithm_tests/cryptology_tests/ceasar_test.py
- python Algorithm_tests/other_tests/test_intervalscheduling.py
- python Algorithm_tests/sorting_tests/test_sorting.py