17
.github/workflows/ci.yml
vendored
17
.github/workflows/ci.yml
vendored
@ -63,5 +63,22 @@ jobs:
|
||||
env:
|
||||
COVERAGE: ${{ secrets.COVERAGE }}
|
||||
|
||||
docs:
|
||||
name: Documentation
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
-
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: '3.x'
|
||||
- name: "Main Script"
|
||||
run: |
|
||||
EXTRA_INSTALL="numpy"
|
||||
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/ci-support.sh
|
||||
. ci-support.sh
|
||||
build_py_project_in_venv
|
||||
build_docs
|
||||
|
||||
# vim: sw=4
|
||||
|
||||
|
@ -30,5 +30,3 @@ Documentation:
|
||||
- ". ./build-docs.sh"
|
||||
tags:
|
||||
- python3
|
||||
only:
|
||||
- master
|
||||
|
@ -117,7 +117,7 @@ html_sidebars = {
|
||||
# Add any paths that contain custom static files (such as style sheets) here,
|
||||
# relative to this directory. They are copied after the builtin static files,
|
||||
# so a file named "default.css" will overwrite the builtin "default.css".
|
||||
html_static_path = ['_static']
|
||||
#html_static_path = ['_static']
|
||||
|
||||
|
||||
# -- Options for HTMLHelp output ------------------------------------------
|
||||
|
@ -36,7 +36,7 @@ Controlling How Values Get Shown
|
||||
def pudb_stringifier(obj):
|
||||
return "HI"
|
||||
|
||||
* Add a :meth:`safely_stringify_for_pudb` to the type.
|
||||
* Add a method ``safely_stringify_for_pudb`` to the type.
|
||||
|
||||
A stringifier is expected to *never* raise an exception.
|
||||
If an exception is raised, pudb will silently fall back
|
||||
|
Reference in New Issue
Block a user