Skip to content

Commit

Permalink
adding travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Rowe committed Apr 12, 2019
1 parent 4731c78 commit f9be839
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
language: python
python:
- "3.6"
install:
- sudo apt-get update
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
# Create the environment for the notebooks
- conda env create --file=binder/environment.yml
- source activate genome-sketching

script:
- pytest binder/test_environment.py
1 change: 1 addition & 0 deletions binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ dependencies:
- python=3.6.5=1
- pip=19.0.3=py36_0
- nb_conda
- pytest==3.1.3
- wget
- sra-tools==2.9.1_1
- trimmomatic==0.39
Expand Down
13 changes: 13 additions & 0 deletions binder/test_environment.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import subprocess
import tempfile

def _exec_notebook(path):
with tempfile.NamedTemporaryFile(suffix=".ipynb") as fout:
args = ["jupyter", "nbconvert", "--to", "notebook", "--execute",
"--ExecutePreprocessor.timeout=1000",
"--output", fout.name, path]
subprocess.check_call(args)


def test():
_exec_notebook('../notebooks/Background.ipynb')

0 comments on commit f9be839

Please sign in to comment.