source: sasmodels/extra/build_linux.sh @ d1fe925

gh-pages
Last change on this file since d1fe925 was d1fe925, checked in by ajj, 8 years ago

Creating gh_pages branch for docs

  • Property mode set to 100755
File size: 482 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
14# Run tests
15STATUS=0
16python -m sasmodels.model_test opencl_and_dll all || STATUS=$?
17python -m sasmodels.resolution || STATUS=$?
18
19# Run lint
20python extra/run-pylint.py > pylint_violations.txt
21
22exit $STATUS
23
24
Note: See TracBrowser for help on using the repository browser.