2015-07-29 18:37:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
testenv:
|
|
|
|
virtualenv testenv
|
|
|
|
testenv/bin/pip install -U pip setuptools
|
|
|
|
testenv/bin/pip install -r testenv_requirements.txt
|
|
|
|
testenv/bin/python pickle_env.py > testenv.pickle
|
|
|
|
|
|
|
|
|
|
|
|
cyclicenv:
|
|
|
|
virtualenv cyclicenv
|
|
|
|
cyclicenv/bin/pip install -U pip setuptools
|
|
|
|
cyclicenv/bin/pip install -r cyclicenv_requirements.txt
|
|
|
|
cyclicenv/bin/python pickle_env.py > cyclicenv.pickle
|
2015-12-02 21:43:59 +00:00
|
|
|
|
|
|
|
unsatisfiedenv:
|
|
|
|
virtualenv unsatisfiedenv
|
|
|
|
unsatisfiedenv/bin/pip install -U pip setuptools
|
|
|
|
unsatisfiedenv/bin/pip install -r unsatisfiedenv_requirements.txt
|
|
|
|
# test case where simplejson is required but not installed
|
|
|
|
unsatisfiedenv/bin/pip install uritemplate==0.6 --no-dependencies
|
|
|
|
unsatisfiedenv/bin/python pickle_env.py > unsatisfiedenv.pickle
|