@@ -80,7 +80,7 @@ def defineCharacteristics(self):
80
80
self .tr ('Pixel size to be used for the output file (XSIZE YSIZE like 512 512)' ),
81
81
None , False , True ))
82
82
params .append (ParameterSelection (self .ALGORITHM ,
83
- self .tr ('Resampling algorithm' ), self .ALGO , 0 , False , True ))
83
+ self .tr ('Resampling algorithm' ), self .ALGO , 0 , False , optional = True ))
84
84
params .append (ParameterCrs (self .S_SRS ,
85
85
self .tr ('Override source CRS' ), None , True ))
86
86
params .append (ParameterNumber (self .PYRAMIDLEVELS ,
@@ -91,10 +91,10 @@ def defineCharacteristics(self):
91
91
False , True ))
92
92
params .append (ParameterSelection (self .RTYPE ,
93
93
self .tr ('Output raster type' ),
94
- self .TYPE , 5 , False , True ))
94
+ self .TYPE , 5 , False , optional = True ))
95
95
params .append (ParameterSelection (self .FORMAT ,
96
96
self .tr ('Output raster format' ),
97
- list (GdalUtils .getSupportedRasters ().keys ()), 0 , False , True ))
97
+ list (GdalUtils .getSupportedRasters ().keys ()), 0 , False , optional = True ))
98
98
params .append (ParameterBoolean (self .USEDIRFOREACHROW ,
99
99
self .tr ('Use a directory for each row' ),
100
100
False , True ))
9 commit comments
m-kuhn commentedon Dec 20, 2016
Wasn't the test for this commit failing before?
alexbruy commentedon Dec 20, 2016
Yes, it failed before on Travis, but passed locally. Fixed after rerunning build
m-kuhn commentedon Dec 20, 2016
It failed in the followup commit (which I only made to debug this failure)
https://travis-ci.org/qgis/QGIS/builds/185500692#L840-L843
Any idea?
alexbruy commentedon Dec 20, 2016
I have no ideas, this commit even not related to failed test. Trying to debug it right now
m-kuhn commentedon Dec 21, 2016
Did you find anything?
All builds are currently failing.
ghtmtt commentedon Dec 21, 2016
I don't know if could help, but locally the test runs without problems:
m-kuhn commentedon Dec 21, 2016
It only fails 1 out of 5 times.
Probably since 97780b6
ghtmtt commentedon Dec 21, 2016
OK I see.. Can I help in some way?
m-kuhn commentedon Dec 21, 2016
Someone needs to fix
ParameterFixedTable.fromScriptCode
which was probably copied fromParameterPoint
and not completely adjusted.