Skip to content

Commit

Permalink
more rever fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
scopatz committed Jan 11, 2018
1 parent 4d5e623 commit 21565c5
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions rever.xsh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ $CHANGELOG_TEMPLATE = 'TEMPLATE.rst'

$DOCKER_APT_DEPS = ['libc6', 'libc6-i386', 'libc6-dev', 'libc-dev', 'gcc']
$DOCKER_CONDA_DEPS = ['cyclus', 'make', 'cmake', 'pkg-config', 'jinja2',
'gcc', 'nose']
'gcc', 'nose', 'pytables']
$DOCKER_INSTALL_COMMAND = (
'git clean -fdx && '
'./install.py --build_type=Release '
Expand All @@ -18,7 +18,13 @@ $DOCKER_INSTALL_COMMAND = (


with! dockeractivity(name='cycamore-tests', lang='sh'):
cd tests && export PATH=${HOME}/.local/bin:${PATH} && cycamore_unit_tests && nosetests
set -e
set -x
export CYCLUS_PATH=${HOME}/.local/lib/cyclus:/opt/conda/lib/cyclus
export PATH=${HOME}/.local/bin:${PATH}
cd tests
cycamore_unit_tests
nosetests

$ACTIVITIES = ['cycamore-tests', 'changelog', 'tag',
'push_tag', 'conda_forge', 'ghrelease',
Expand Down

0 comments on commit 21565c5

Please sign in to comment.