File tree 3 files changed +11
-6
lines changed
3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change
1
+ include *.txt
2
+ recursive-include static
3
+ recursive logs
4
+ recursive workdir/
Original file line number Diff line number Diff line change 19
19
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
20
# SOFTWARE.
21
21
22
+
23
+ try :
24
+ from setuptools import setup
25
+ except ImportError :
26
+ from distutils .core import setup
27
+
22
28
with open ('VERSION.txt' ) as ff :
23
29
VERSION = ff .read ().strip ()
24
30
37
43
38
44
KEYWORDS = 'PyWPS WPS OGC processing'
39
45
40
- try :
41
- from setuptools import setup
42
- except ImportError :
43
- from distutils .core import setup
44
-
45
46
config = {
46
47
'description' : DESCRIPTION ,
47
48
'keywords' : KEYWORDS ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ def test_db_log(self):
8
8
conn = sqlite3 .connect ('logs/pywps-logs.sqlite3' )
9
9
10
10
cur = conn .cursor ()
11
- cur .execute ('select * from pywps_requests ' )
11
+ cur .execute ('select * from pywps_stored_requests ' )
12
12
all_lines = cur .fetchall ()
13
13
14
14
self .assertEqual (len (all_lines )% 5 , 0 )
You can’t perform that action at this time.
0 commit comments