diff --git a/test/bats/justfile b/test/bats/justfile index 2e47c5abc..1e0492dd8 100644 --- a/test/bats/justfile +++ b/test/bats/justfile @@ -79,7 +79,7 @@ test-contract: fi # content_list will contain all content in - content_list=$(python ../deploy_helper.py content/bundles) + content_list=$(python ../deploy_helper.py) for i in ${content_list} do # only test when we have a .publisher-env file for the content diff --git a/test/deploy_helper.py b/test/deploy_helper.py index 00455c63f..5995c93b0 100755 --- a/test/deploy_helper.py +++ b/test/deploy_helper.py @@ -5,7 +5,7 @@ script_dir = os.path.dirname(os.path.realpath(__file__)) # Specify the directory name -directory_name = sys.argv[1] +directory_name = os.path.join( "content", "bundles" ) # Create the full path to the directory directory_path = os.path.join(script_dir, directory_name)