-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
DOC/CI: include api docs on travis #11069
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f216c8e
902f1ca
8c42834
347b616
556b085
58d3230
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,7 @@ echo "inside $0" | |
sudo apt-get update $APT_ARGS # run apt-get update for all versions | ||
|
||
true # never fail because bad things happened here | ||
|
||
if [ x"$DOC_BUILD" == x"" ]; then | ||
exit 1 | ||
fi | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you nee to put this before the 'true' above. IOW, the script should always return true. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, this was only for the testing from the temp commit (just so the others will all fail before installing pandas, so the doc build did not need to wait on all the others) |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,23 +14,22 @@ fi | |
|
||
if [ x"$DOC_BUILD" != x"" ]; then | ||
|
||
# we're running network tests, let's build the docs in the meantime | ||
echo "Will build docs" | ||
conda install -n pandas sphinx=1.1.3 pygments ipython=2.4 --yes | ||
|
||
source activate pandas | ||
conda install -n pandas -c r r rpy2 --yes | ||
|
||
time sudo apt-get $APT_ARGS install dvipng | ||
|
||
mv "$TRAVIS_BUILD_DIR"/doc /tmp | ||
cd /tmp/doc | ||
|
||
rm /tmp/doc/source/api.rst # no R | ||
rm /tmp/doc/source/r_interface.rst # no R | ||
|
||
echo ############################### | ||
echo # Log file for the doc build # | ||
echo ############################### | ||
|
||
echo -e "y\n" | ./make.py --no-api 2>&1 | ||
echo ./make.py | ||
./make.py | ||
|
||
cd /tmp/doc/build/html | ||
git config --global user.email "[email protected]" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dateutil | ||
pytz | ||
numpy | ||
cython |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
sphinx=1.2.3 | ||
ipython=3.2.1 | ||
matplotlib | ||
scipy | ||
lxml | ||
beautiful-soup | ||
html5lib | ||
pytables | ||
openpyxl=1.8.5 | ||
xlrd | ||
xlwt | ||
xlsxwriter | ||
sqlalchemy | ||
numexpr | ||
bottleneck | ||
statsmodels |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I actually don't think we should have this and leave it false. That way you can see the full gamut of errors (of course for your testsing ok)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, this one is from the temporary commit just for testing, will remove it