Skip to content

Commit

Permalink
cleaned up yaml spec and added docs test
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Dec 20, 2023
1 parent a3bda25 commit 99ed679
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,8 @@
*.swp
.settings/
/build/
/dist
/dist.*
/docs/build
/docs/source/_build
dist
/docs/*
.pytest_cache/
/.history
.env
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ version:
base_image:
# Pick a generic base image, in this case Ubuntu - Jammy (22.04LTS)
name: deepmi/fastsurfer
package_manager: apt
tag: cpu-v2.1.1
authors:
# Authors of the pipeline. The first email will be considered to be the maintainer of
Expand Down
1 change: 0 additions & 1 deletion src/get_latest_pkg_version.py

This file was deleted.

10 changes: 10 additions & 0 deletions tests/test_docs.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import sys
from click.testing import CliRunner
from arcana.core.cli.deploy import make_docs

runner = CliRunner()
runner.invoke(
make_docs,
args=sys.argv[1:],
catch_exceptions=False
)

0 comments on commit 99ed679

Please sign in to comment.