diff --git a/make_docs.sh b/make_docs.sh index ef0362cc..9b4cadcf 100755 --- a/make_docs.sh +++ b/make_docs.sh @@ -1,4 +1,4 @@ -#! /bin/bash +#!/usr/bin/env bash - # sphinx-apidoc -o ./docs -efT $pwd - sphinx-build -b html docs docs/_build +# sphinx-apidoc -o ./docs -efT $pwd +sphinx-build -b html docs docs/_build diff --git a/run_tests.sh b/run_tests.sh index 70d413d8..3fd33ef7 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -8,4 +8,4 @@ docker run -it \ --volume "$(pwd)":$project_dir_in_container \ --workdir $project_dir_in_container \ $image_name \ - pytest # run pytest + pytest "$@"