Skip to content
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

Add some ignores #389

Closed
wants to merge 1 commit into from
Closed
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
7 changes: 6 additions & 1 deletion .htmltest.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
DirectoryPath: public/
IgnoreDirectoryMissingTrailingSlash: true
IgnoreDirectoryMissingTrailingSlash: true
IgnoreURLs:
- "*route-to-mlflow*"
- "*svc.cluster.local"
- "*your-uri*"
- "*credit-fraud-model*"
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ serve: ## Build the website locally from a container and serve it
.PHONY: htmltest
htmltest: build ## Runs htmltest against the site to find broken links
@echo "Running html proof to check links"
podman run -it --net=host -v $(PWD):/site:$(ATTRS) --entrypoint htmltest $(HOMEPAGE_CONTAINER)
podman run -it --net=host -v $(PWD):/site:$(ATTRS) --entrypoint htmltest $(HOMEPAGE_CONTAINER) -c .htmltest.yml

.PHONY: run
run: ## Runs the container interactively
Expand Down