You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#- Make sure stuff works to start with
cd ~/desi/git/desimodel
git checkout master
git pull
svn update svn/trunk
export DESIMODEL=`pwd`/svn/trunk
python setup.py test
#- Make the svn tag
base=https://desi.lbl.gov/svn/code/desimodel
svn copy $base/trunk $base/tags/0.5.0
#- Make the lightweight test data branch
svn copy $base/trunk $base/branches/test-0.5.0
cd svn
svn checkout $base/branches/test-0.5.0
cd test-0.5.0
python -c "from desimodel.trim import trim_data; trim_data('data', 'datalite')"
svn add datalite
svn remove data
svn commit -m "Adding 0.5.0 lite files"
svn move datalite data
svn commit -m "Rename datalite/ back to data/"
#- make sure test work with lightweight version too
cd ~/desi/git/desimodel
export DESIMODEL=`pwd`/svn/test-0.5.0
python setup.py test
#- Proceed with github tag
cd ~/desi/git/desimodel
[edit doc/release_notes.rst]
python setup.py version --tag=0.5.0
git commit -am "desimodel 0.5.0"
git tag -am 'desimodel 0.5.0' 0.5.0
git push origin master
git push origin 0.5.0
Based on #30, I'm trying to run tests on the OBSCONDITIONS column, but the testing branches used for Travis tests do not contain that column.
The text was updated successfully, but these errors were encountered: