Skip to content

Commit 77907d8

Browse files
authored
Removed conditional in install_all_and_run_tests.sh
Removed the conditional block that checked for Python 3.6 and installed dependencies differently.
1 parent 6090d89 commit 77907d8

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

scripts/install_all_and_run_tests.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,7 @@ pip uninstall python-lambda
1616
test_target="$1"
1717
python_version=`python --version | awk '{print $2}'`
1818

19-
if [ ${python_version:0:3} == "3.6" ]
20-
then
21-
pip install -U -r requirements.txt
22-
else
23-
pip install -e .
24-
fi
19+
pip install -e .
2520

2621
if [[ $test_target != "" ]]
2722
then

0 commit comments

Comments
 (0)