forked from aladdinpersson/Machine-Learning-Collection
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
23 lines (18 loc) · 628 Bytes
/
Copy path.travis.yml
File metadata and controls
23 lines (18 loc) · 628 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: python
# Default Python version
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_install:
# - cd Algorithm_tests/sorting_tests
# Install awesome_bot for README.md broken link checking
before_script:
- gem install awesome_bot
script:
- awesome_bot README.md --allow-dupe --allow-redirect
#- flake8 --max-line-length=88
- python ML_tests/LinearRegression_tests/LinearRegression_GD.py
- python ML_tests/LinearRegression_tests/LinearRegression_normal.py