Skip to content

Commit 448150b

Browse files
committed
clean up local tests
1 parent f71b0d3 commit 448150b

File tree

2 files changed

+2
-325
lines changed

2 files changed

+2
-325
lines changed

full_install.sh

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,13 @@ except ImportError:
1313
print('false')
1414
")
1515

16-
# Only change directory if not in Colab
17-
if [ "$IN_COLAB" != "true" ]; then
18-
# Change the current directory to the script's directory
19-
cd "$script_dir"
20-
fi
21-
22-
# Default to editable installs, but force non-editable for Colab
16+
# Set installation type based on environment
2317
if [ "$IN_COLAB" == "true" ]; then
2418
EDITABLE="false"
2519
echo "Colab detected - forcing non-editable install"
2620
else
2721
EDITABLE="true"
22+
cd "$script_dir"
2823
fi
2924

3025
# Handle user override of editable setting

0 commit comments

Comments
 (0)