postactivate seems to not be loaded.
To test it I added a path to $PYTHONPATH:
export OLD_PYTHONPATH="$PYTHONPATH"
if [ -z $PYTHONPATH ]; then
export PYTHONPATH=/home/bsemene/dev/logging_handlers
else
export PYTHONPATH=$PYTHONPATH:/home/bsemene/dev/logging_handlers
fi
On the console I execute the following in my virtualenv:
$python -c "import sys ; import os ; print os.getenv('PYTHONPATH') in sys.path"
True
And on sublime (after activating the virtualenv):
print '/home/bsemene/dev/logging_handlers' in sys.path returns False
postactivate seems to not be loaded.
To test it I added a path to
$PYTHONPATH:On the console I execute the following in my virtualenv:
And on sublime (after activating the virtualenv):
print '/home/bsemene/dev/logging_handlers' in sys.pathreturns False