Skip to content

Commit

Permalink
Add missing files (.dockerignore, .travis.yml) (mlflow#12)
Browse files Browse the repository at this point in the history
* Add travis.yml

* Add .dockerignore & update .gitignore
  • Loading branch information
smurching authored Jun 7, 2018
1 parent 7bf6613 commit a3902f0
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.git
mlruns
outputs
__pycache__
.*
~*
*.swp
*.pyc
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Mlflow
mlruns/
outputs/

# Mac
.DS_Store
Expand Down
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
sudo: true
language: python
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.6
env: TOXENV=py36
install:
- pip install --upgrade pip
- pip install .
- pip install -r dev-requirements.txt
script:
- pip list
- tox

0 comments on commit a3902f0

Please sign in to comment.