Changeset 22274


Ignore:
Timestamp:
11/24/17 12:27:39 (7 years ago)
Author:
kruegern
Message:

CHG: changed some jenkins scripts to ignore test703.py, added 243, 701, and 435 back to jenkins testing. Fixed bamgflowband.py not working well with bamg.py and breaking either 701 or 514 and 119.

Location:
issm/trunk-jpl
Files:
1 added
7 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/jenkins/linux64_caladan

    r22033 r22274  
    6464#by Matlab and runme.m
    6565#ex: "'id',[101 102 103]"
    66 PYTHON_NROPTIONS="--exclude 701 702 435"
     66PYTHON_NROPTIONS="--exclude 701 702 435 703"
    6767MATLAB_NROPTIONS="'exclude',[701,702,435]"
  • issm/trunk-jpl/jenkins/linux64_ross

    r21871 r22274  
    6767#by Matlab and runme.m
    6868#ex: "'id',[101 102 103]"
    69 PYTHON_NROPTIONS="--exclude 243 701 702 435"
     69PYTHON_NROPTIONS="--exclude 702 703"
    7070MATLAB_NROPTIONS="'exclude',[IdFromString('Dakota')]"
  • issm/trunk-jpl/jenkins/linux64_ross_dakota

    r21871 r22274  
    6262#by Matlab and runme.m
    6363#ex: "'id',[101 102 103]"
    64 PYTHON_NROPTIONS=""
     64PYTHON_NROPTIONS="--exclude 702 703"
    6565MATLAB_NROPTIONS="'exclude',[243,701,702,435]"
  • issm/trunk-jpl/jenkins/linux64_ross_javascript

    r22067 r22274  
    4949#by Matlab and runme.m
    5050#ex: "'id',[101 102 103]"
    51 #PYTHON_NROPTIONS="--exclude 119 243 514 701 702 435"
     51#PYTHON_NROPTIONS="--exclude 119 243 514 701 702 703 435"
    5252#MATLAB_NROPTIONS="'exclude',[119,243,514,701,702,435,IdFromString('Dakota')]"
  • issm/trunk-jpl/jenkins/linux64_ross_python

    r21871 r22274  
    5858#by Matlab and runme.m
    5959#ex: "'id',[101 102 103]"
    60 PYTHON_NROPTIONS="--exclude 243 701 702 435"
     60PYTHON_NROPTIONS="--exclude 702 703"
    6161MATLAB_NROPTIONS="'exclude',[IdFromString('Dakota')]"
  • issm/trunk-jpl/jenkins/linux64_ross_test

    r22033 r22274  
    6464#by Matlab and runme.m
    6565#ex: "'id',[101 102 103]"
    66 PYTHON_NROPTIONS="--exclude 243 701 702 435"
     66PYTHON_NROPTIONS="--exclude 243 701 702 703 435"
    6767MATLAB_NROPTIONS="'exclude',[243,701,702,435]"
  • issm/trunk-jpl/src/m/mesh/bamgflowband.py

    r22267 r22274  
    2525        #Write expfile with domain outline
    2626        A = OrderedDict()
    27         A.x = np.concatenate((x,np.flipud(x),[x[0]]))
    28         A.y = np.concatenate((base,np.flipud(surf),[base[0]]))
    29         A.nods = np.size(A.x)
     27        A['x'] = np.concatenate((x,np.flipud(x),[x[0]]))
     28        A['y'] = np.concatenate((base,np.flipud(surf),[base[0]]))
     29        A['nods'] = np.size(A['x'])
    3030
    3131        #markers:
    32         m                               = np.ones((np.size(A.x)-1,))    # base        = 1
     32        m                               = np.ones((np.size(A['x'])-1,)) # base        = 1
    3333        m[np.size(x) - 1]                       = 2                     # right side  = 2
    3434        m[np.size(x):2 * np.size(x) - 1]        = 3                     # top surface = 3
Note: See TracChangeset for help on using the changeset viewer.