File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55sphinx-runpython: run python code in sphinx
66===========================================
77
8- .. image :: https://dev.azure. com/xavierdupre3 /sphinx-runpython/_apis/build/status/sdpython.sphinx-runpython
9- :target: https://dev.azure. com/xavierdupre3 /sphinx-runpython/
8+ .. image :: https://github. com/sdpython /sphinx-runpython/actions/workflows/tests.yml/badge.svg
9+ :target: https://github. com/sdpython /sphinx-runpython/actions/workflows/tests.yml
1010
1111.. image :: https://badge.fury.io/py/sphinx-runpython.svg
1212 :target: http://badge.fury.io/py/sphinx-runpython
Original file line number Diff line number Diff line change 5555graphviz_output_format = "svg"
5656graphviz_dot_args = ["-Gbgcolor=transparent" ]
5757
58+ issues_github_path = "sdpython/sphinx-runpython"
59+
5860html_theme = "furo"
5961html_theme_path = ["_static" ]
6062html_theme_options = {}
Original file line number Diff line number Diff line change 22sphinx-runpython: (Numpy) Array API for ONNX
33============================================
44
5- .. image :: https://dev.azure. com/xavierdupre3 /sphinx-runpython/_apis/build/status/sdpython.sphinx-runpython
6- :target: https://dev.azure. com/xavierdupre3 /sphinx-runpython/
5+ .. image :: https://github. com/sdpython /sphinx-runpython/actions/workflows/tests.yml/badge.svg
6+ :target: https://github. com/sdpython /sphinx-runpython/actions/workflows/tests.yml
77
88.. image :: https://badge.fury.io/py/sphinx-runpython.svg
99 :target: http://badge.fury.io/py/sphinx-runpython
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -121,25 +121,25 @@ def is_linux() -> bool:
121121
122122
123123def skipif_ci_windows (msg ) -> Callable :
124- """Skips a unit test if it runs on :epkg:`azure pipeline ` on :epkg:`Windows`."""
124+ """Skips a unit test if it runs on :epkg:`GitHub Actions ` on :epkg:`Windows`."""
125125 if is_windows ():
126- msg = f"Test does not work on azure pipeline (Windows). { msg } "
126+ msg = f"Test does not work on GitHub Actions (Windows). { msg } "
127127 return unittest .skip (msg )
128128 return lambda x : x
129129
130130
131131def skipif_ci_linux (msg ) -> Callable :
132- """Skips a unit test if it runs on :epkg:`azure pipeline ` on :epkg:`Linux`."""
132+ """Skips a unit test if it runs on :epkg:`GitHub Actions ` on :epkg:`Linux`."""
133133 if is_linux ():
134134 msg = f"Takes too long (Linux). { msg } "
135135 return unittest .skip (msg )
136136 return lambda x : x
137137
138138
139139def skipif_ci_apple (msg ) -> Callable :
140- """Skips a unit test if it runs on :epkg:`azure pipeline ` on :epkg:`Windows `."""
140+ """Skips a unit test if it runs on :epkg:`GitHub Actions ` on :epkg:`macOS `."""
141141 if is_apple ():
142- msg = f"Test does not work on azure pipeline (Apple). { msg } "
142+ msg = f"Test does not work on GitHub Actions (Apple). { msg } "
143143 return unittest .skip (msg )
144144 return lambda x : x
145145
You can’t perform that action at this time.
0 commit comments