khenaidoo | 9a46896 | 2018-09-19 15:33:13 -0400 | [diff] [blame] | 1 | # Copyright 2017-present Open Networking Foundation |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | # sourcing this file is needed to make local development and integration testing work |
| 15 | export VOLTHA_BASE=$PWD |
| 16 | |
| 17 | # load local python virtualenv if exists, otherwise create it |
| 18 | VENVDIR="venv-$(uname -s | tr '[:upper:]' '[:lower:]')" |
| 19 | if [ ! -e "$VENVDIR/.built" ]; then |
| 20 | echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" |
| 21 | echo "Initializing OS-appropriate virtual env." |
| 22 | echo "This will take a few minutes." |
| 23 | echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" |
| 24 | make venv |
| 25 | fi |
| 26 | . $VENVDIR/bin/activate |
| 27 | |
| 28 | # add top-level voltha dir to pythonpath |
khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 29 | export PYTHONPATH=$VOLTHA_BASE/$VENVDIR/lib/python2.7/site-packages:$PYTHONPATH:$VOLTHA_BASE:$VOLTHA_BASE/cli:$VOLTHA_BASE/protos/third_party |