source:
sasmodels/extra/build_linux.sh
@
b6422c7
Last change on this file since b6422c7 was 0d362b7, checked in by Paul Kienzle <pkienzle@…>, 6 years ago | |
---|---|
|
|
File size: 470 bytes |
Rev | Line | |
---|---|---|
[95d67be] | 1 | #!/bin/bash |
2 | ||
[6d2abaa] | 3 | test -z $WORKSPACE && WORKSPACE=. |
4 | ||
[95d67be] | 5 | EASY_INSTALL=${EASY_INSTALL:-`which easy_install`} |
6 | cd $WORKSPACE | |
7 | if [ ! -d "utils" ]; then | |
8 | mkdir utils | |
9 | fi | |
10 | export PYTHONPATH=$WORKSPACE/utils:$PYTHONPATH | |
11 | ||
12 | "$EASY_INSTALL" -d "$WORKSPACE/utils" unittest-xml-reporting pylint | |
13 | ||
[db8756e] | 14 | # Run tests |
15 | STATUS=0 | |
[0d362b7] | 16 | python -m sasmodels.model_test -v all || STATUS=$? |
[db8756e] | 17 | python -m sasmodels.resolution || STATUS=$? |
18 | ||
19 | # Run lint | |
20 | python extra/run-pylint.py > pylint_violations.txt | |
[95d67be] | 21 | |
[db8756e] | 22 | exit $STATUS |
[95d67be] | 23 | |
24 |
Note: See TracBrowser
for help on using the repository browser.