source: sasmodels/extra/build_linux.sh @ 6d2abaa

core_shell_microgelscostrafo411magnetic_modelrelease_v0.94release_v0.95ticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 6d2abaa was 6d2abaa, checked in by pkienzle, 9 years ago

allow extra/build_linux.sh test from developer machine

  • Property mode set to 100755
File size: 413 bytes
Line 
1#!/bin/bash
2
3test -z $WORKSPACE && WORKSPACE=.
4
5EASY_INSTALL=${EASY_INSTALL:-`which easy_install`}
6cd $WORKSPACE
7if [ ! -d "utils" ]; then
8    mkdir utils
9fi
10export PYTHONPATH=$WORKSPACE/utils:$PYTHONPATH
11
12"$EASY_INSTALL" -d "$WORKSPACE/utils" unittest-xml-reporting pylint
13
14cd $WORKSPACE
15python -m sasmodels.model_test opencl_and_dll all || exit 1
16
17python extra/run-pylint.py > pylint_violations.txt || exit 0
18
19
Note: See TracBrowser for help on using the repository browser.