Skip to content

chore(docs): add spellcheck #2466

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

Merged
merged 4 commits into from
Nov 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 37 additions & 37 deletions CHANGES.rst

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"sphinx.ext.doctest",
"sphinx.ext.intersphinx",
"sphinx.ext.viewcode",
"sphinxcontrib.spelling",
]

# Add any paths that contain templates here, relative to this directory.
Expand Down Expand Up @@ -95,7 +96,7 @@

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = ["_build"]
exclude_patterns = ["_build", "CHANGES.rst"]

# The reST default role (used for this markup: `text`) to use for all
# documents.
Expand Down
251 changes: 251 additions & 0 deletions docs/spelling_wordlist.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,251 @@
acyclic
admin
Amalthea
analytics
api
app
args
argv
async
attrs
auditability
auth
autocomplete
autosave
autosaved
backend
backends
backgroundImage
balancer
Bergstrom
Bioconductor
Bitnami
blog
BMP
bugfix
Calamus
chartpress
Chartpress
checksum
checksums
ci
CI
circumventable
cli
CLI
conda
config
contentMd
cookiecutter
Cookiecutter
coopetition
CountFlights
cronjob
Cuda
customizable
cwl
CWL
dataset
datasets
dataverse
Dataverse
deployer
deserialization
deserialize
Deserialize
discoverable
Dockerfile
dockerfiles
Dockerfiles
dockerhub
dockerignore
dotfiles
Dropbox
dropdown
entrypoint
executables
extraEnv
extraEnvFrom
filesystem
FilterFlights
findable
Fortran
gapped
git-lfs
github
gitignore
gitkeep
gitlab
GitLab
gitlabClientSecret
GraphQL
Homebrew
hostname
https
hyperkit
hypervisor
iframes
indices
Indices
init
installable
interoperability
io
ipynb
iteratively
ize
izing
Janusgraph
Jena
JPEG
json
jsonld
jupyter
Jupyterhub
JupyterHub
jupyterlab
JupyterLab
kb
keycloak
Keycloak
ku
kubernetes
kus
ld
lefthand
lfs
localhost
Matlab
metadata
microservices
middleware
migrationscheck
minikube
minimalistic
mistyped
mydomain
namespace
namespaces
Nginx
nodejs
oauth
OAuth
oid
ok
online
OpenID
openssl
papermill
parameterizable
parametrization
parametrize
parametrized
pipenv
PNG
Postgresql
powerline
pre
prepend
preprocessed
preprocessing
programmatically
py
pyshacl
rdflib
readme
rebase
redirections
refactor
Refactor
refactored
Renga
renku
Renku
renkulab
renv
repo
reproducibility
Reproducibility
reproducibly
resync
reusability
Reusability
righthand
roadmap
Roadmap
rstudio
RStudio
runnable
runtime
runtimes
scala
shacl
SPARQL
spawner
SQLAlchemy
statefulset
statuspage
stderr
stdin
stdout
subclass
Subclass
subclasses
Subclasses
subcommand
subdirectories
subdirectory
subgraph
Subgraph
submodule
submodules
subpath
substep
substeps
sudo
supertype
supertypes
symlink
symlinks
templated
Tensorboard
Tensorflow
timestamp
tinkerpop
toolchain
tutorialLink
txt
typesystem
Ubuntu
ui
unhandled
unicode
unlink
Unlink
unlinking
unmapped
untracked
untracked
url
username
validator
versioned
versioning
Versioning
vertices
vm
webhook
webhooks
whitespace
wildcard
workflow
Workflow
workflows
Workflows
worktree
worktree
worktrees
yaml
yml
Zenodo
連句
2 changes: 1 addition & 1 deletion renku/cli/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
:width: 850
:alt: Iterate Plans
For executing a Plan with different parameterization ``renku workflow iterate``
For executing a Plan with different parametrization ``renku workflow iterate``
could be used. This sub-command is basically conducting a 'grid search'-like
execution of a Plan, with parameter-sets provided by the user.
Expand Down
2 changes: 1 addition & 1 deletion renku/core/management/workflow/value_resolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Resolution of Worklow execution values precedence."""
"""Resolution of ``Workflow`` execution values precedence."""

from abc import ABC, abstractmethod
from itertools import chain
Expand Down
1 change: 1 addition & 0 deletions run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ check_styles(){

build_docs(){
sphinx-build -qnNW docs docs/_build/html
sphinx-build -nNW -b spelling -d docs/_build/doctrees docs docs/_build/spelling
pytest -v -m "not integration and not publish" -o testpaths="docs conftest.py" --ignore=docs/conf.py
}

Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,12 @@ def run(self):


extras_require = {
"docs": ["Jinja2>=2.11.3,<3.0.2", "renku-sphinx-theme>=0.2.0", "sphinx-rtd-theme>=0.5.0,<1.1"],
"docs": [
"Jinja2>=2.11.3,<3.0.2",
"renku-sphinx-theme>=0.2.0",
"sphinx-rtd-theme>=0.5.0,<1.1",
"sphinxcontrib-spelling==7.*"
],
"runner": ["cwlref-runner==1.0"],
"notebook": [],
"tests": tests_require,
Expand Down