Skip to content

Commit

Permalink
🏗️ Temporary disabled quickstart workflow and linkcheck until repo is…
Browse files Browse the repository at this point in the history
… public
  • Loading branch information
Bartvaderkin committed Mar 11, 2021
1 parent ff729ab commit d717d6c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/quick-start.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on: [push]
jobs:
run:
runs-on: ubuntu-latest
if: false # disabled until repo is public
steps:
- name: Download docker-compose file
run: wget https://raw.githubusercontent.com/maykinmedia/catalogi-importer/master/docker-compose-quickstart.yml -O docker-compose-qs.yml
Expand Down
3 changes: 2 additions & 1 deletion docs/check_sphinx.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import subprocess


def test_linkcheck(tmpdir):
# disabled until repo is public
def __test_linkcheck(tmpdir):
doctrees = tmpdir.join("doctrees")
htmldir = tmpdir.join("html")
subprocess.check_call(
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
# ones.
extensions = [
"sphinx.ext.todo",
# "sphinx_tabs.tabs",
# "recommonmark",
"sphinx_tabs.tabs",
"recommonmark",
# "sphinx_markdown_tables",
]

Expand All @@ -59,7 +59,7 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", ".pytest_cache"]

source_suffix = [".rst", ".md"]

Expand Down

0 comments on commit d717d6c

Please sign in to comment.