diff --git a/.gitignore b/.gitignore index 3f71383..ce9a353 100644 --- a/.gitignore +++ b/.gitignore @@ -9,10 +9,8 @@ *.swp .settings/ /build/ -/dist -/dist.* -/docs/build -/docs/source/_build +dist +/docs/* .pytest_cache/ /.history .env diff --git a/specs/australian-imaging-service-community/au/edu/sydney/sydneyimaging/t1_preproc.yaml b/specs/australian-imaging-service-community/au/edu/sydney/sydneyimaging/t1_preproc.yaml index b94d665..f6bfd86 100644 --- a/specs/australian-imaging-service-community/au/edu/sydney/sydneyimaging/t1_preproc.yaml +++ b/specs/australian-imaging-service-community/au/edu/sydney/sydneyimaging/t1_preproc.yaml @@ -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 diff --git a/src/get_latest_pkg_version.py b/src/get_latest_pkg_version.py deleted file mode 100644 index aef1e23..0000000 --- a/src/get_latest_pkg_version.py +++ /dev/null @@ -1 +0,0 @@ -#/usr/bin/env python3 diff --git a/tests/test_docs.py b/tests/test_docs.py new file mode 100644 index 0000000..806b11c --- /dev/null +++ b/tests/test_docs.py @@ -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 +)