diff --git a/.github/workflows/test-nightly-binaries.yml b/.github/workflows/test-nightly-binaries.yml index 680ab300..55bf052a 100644 --- a/.github/workflows/test-nightly-binaries.yml +++ b/.github/workflows/test-nightly-binaries.yml @@ -35,7 +35,7 @@ jobs: uses: actions/checkout@v4 with: repository: ivy-llc/ivy - path: ivy + path: ivy_repo persist-credentials: false submodules: "recursive" fetch-depth: 1 diff --git a/tests/test_demos.sh b/tests/test_demos.sh index d403059c..ad9ce0c0 100755 --- a/tests/test_demos.sh +++ b/tests/test_demos.sh @@ -4,7 +4,7 @@ if [ $2 == true ]; then export VERSION=nightly fi -cd ivy +cd ivy_repo pip install -e . cd ../demos @@ -14,8 +14,10 @@ mkdir .ivy pip install -r requirements.txt >/dev/null 2>&1 # get the binaries -VERSION=nightly python3 -c "import ivy; ivy.utils.cleanup_and_fetch_binaries(clean=True)" - +python3 << 'EOF' +import ivy +ivy.utils.cleanup_and_fetch_binaries(clean=True) +EOF # run test if [ $3 == true ]; then