Skip to content
Snippets Groups Projects
Commit 122a2654 authored by Tim O'Donnell's avatar Tim O'Donnell
Browse files

don't use make in travis for sphinx doctest

parent defb41c3
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,6 @@ before_install: ...@@ -18,7 +18,6 @@ before_install:
# Useful for debugging any issues with conda # Useful for debugging any issues with conda
- conda info -a - conda info -a
- free -m - free -m
- make -v
addons: addons:
apt: apt:
packages: packages:
......
...@@ -66,6 +66,8 @@ logging.getLogger('tensorflow').disabled = True ...@@ -66,6 +66,8 @@ logging.getLogger('tensorflow').disabled = True
import numpy import numpy
import pandas import pandas
import mhcflurry import mhcflurry
pandas.set_option('max_columns', 20)
pandas.set_option('display.expand_frame_repr', False)
''' '''
doctest_test_doctest_blocks = '' doctest_test_doctest_blocks = ''
......
#!/bin/bash #!/bin/bash
make doctest sphinx-build -b doctest -d _build/doctrees . _build/doctest
RETVAL=$? RETVAL=$?
echo doctest returned $RETVAL echo doctest returned $RETVAL
cat _build/doctest/output.txt cat _build/doctest/output.txt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment