Re: [Django] #25438: Oracle GIS test failures for Django 1.9

2015-11-25 Thread Django
#25438: Oracle GIS test failures for Django 1.9
+
 Reporter:  timgraham   |Owner:  nobody
 Type:  Bug |   Status:  closed
Component:  GIS |  Version:  master
 Severity:  Normal  |   Resolution:  fixed
 Keywords:  oracle 1.9  | Triage Stage:  Accepted
Has patch:  0   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  0
Easy pickings:  0   |UI/UX:  0
+
Changes (by timgraham):

 * status:  new => closed
 * resolution:   => fixed


--
Ticket URL: <https://code.djangoproject.com/ticket/25438#comment:14>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.98e6a7834aaefa07b784c698f2a45f98%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #25438: Oracle GIS test failures for Django 1.9

2015-11-25 Thread Django
#25438: Oracle GIS test failures for Django 1.9
+
 Reporter:  timgraham   |Owner:  nobody
 Type:  Bug |   Status:  new
Component:  GIS |  Version:  master
 Severity:  Normal  |   Resolution:
 Keywords:  oracle 1.9  | Triage Stage:  Accepted
Has patch:  0   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  0
Easy pickings:  0   |UI/UX:  0
+

Comment (by Tim Graham <timograham@…>):

 In [changeset:"5657000bfe43c58cbd4873e53c1b18b604cff996" 5657000b]:
 {{{
 #!CommitTicketReference repository=""
 revision="5657000bfe43c58cbd4873e53c1b18b604cff996"
 [1.9.x] Refs #25438 -- Fixed two geoapp test failures on Oracle.
 }}}

--
Ticket URL: <https://code.djangoproject.com/ticket/25438#comment:13>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.c95da9cd221b6f2884c5a7280204cb8e%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #25438: Oracle GIS test failures for Django 1.9

2015-11-25 Thread Django
#25438: Oracle GIS test failures for Django 1.9
+
 Reporter:  timgraham   |Owner:  nobody
 Type:  Bug |   Status:  new
Component:  GIS |  Version:  master
 Severity:  Normal  |   Resolution:
 Keywords:  oracle 1.9  | Triage Stage:  Accepted
Has patch:  0   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  0
Easy pickings:  0   |UI/UX:  0
+

Comment (by jtiai):

 That is correct fix for the issue.

--
Ticket URL: <https://code.djangoproject.com/ticket/25438#comment:12>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.f532dfac5141658faab203cd1ab16e42%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #25438: Oracle GIS test failures for Django 1.9

2015-11-25 Thread Django
#25438: Oracle GIS test failures for Django 1.9
+
 Reporter:  timgraham   |Owner:  nobody
 Type:  Bug |   Status:  new
Component:  GIS |  Version:  master
 Severity:  Normal  |   Resolution:
 Keywords:  oracle 1.9  | Triage Stage:  Accepted
Has patch:  0   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  0
Easy pickings:  0   |UI/UX:  0
+

Comment (by sir-sigurd):

 It seems that it was fixed in master by this
 
[https://github.com/django/django/commit/7127eb287fb08b89a31bc97097a1fb6b08ada463
 commit]. It replaces
 {{{
 self.assertEqual(c.mpoly.difference(geom), c.difference)
 }}}
 with
 {{{
 self.assertTrue(c.mpoly.difference(geom).equals(c.diff))
 }}}

--
Ticket URL: <https://code.djangoproject.com/ticket/25438#comment:11>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.8bf103401ce3434d8d562519e9e22e13%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #25438: Oracle GIS test failures for Django 1.9

2015-11-19 Thread Django
#25438: Oracle GIS test failures for Django 1.9
+
 Reporter:  timgraham   |Owner:  nobody
 Type:  Bug |   Status:  new
Component:  GIS |  Version:  master
 Severity:  Normal  |   Resolution:
 Keywords:  oracle 1.9  | Triage Stage:  Accepted
Has patch:  1   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  0
Easy pickings:  0   |UI/UX:  0
+
Changes (by timgraham):

 * has_patch:  0 => 1


Comment:

 [https://github.com/django/django/pull/5684 PR]

--
Ticket URL: <https://code.djangoproject.com/ticket/25438#comment:7>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.bca79e2f1929e83dac11ba2c8abe8faa%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #25438: Oracle GIS test failures for Django 1.9

2015-11-19 Thread Django
#25438: Oracle GIS test failures for Django 1.9
+
 Reporter:  timgraham   |Owner:  nobody
 Type:  Bug |   Status:  new
Component:  GIS |  Version:  master
 Severity:  Normal  |   Resolution:
 Keywords:  oracle 1.9  | Triage Stage:  Accepted
Has patch:  0   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  0
Easy pickings:  0   |UI/UX:  0
+
Changes (by timgraham):

 * status:  closed => new
 * has_patch:  1 => 0
 * resolution:  fixed =>


Comment:

 `test_difference` and `test_difference_mixed_srid` still fail on the 1.9
 branch.
 {{{
 ==
 FAIL [0.102s]: test_difference
 (gis_tests.geoapp.test_functions.GISFunctionsTests)
 --
 Traceback (most recent call last):
   File "/home/jenkins/workspace/django-
 
oracle-1.9/database/oragis12/label/trusty/python/python2.7/django/test/testcases.py",
 line 1093, in skip_wrapper
 return test_func(*args, **kwargs)
   File "/home/jenkins/workspace/django-
 
oracle-1.9/database/oragis12/label/trusty/python/python2.7/tests/gis_tests/geoapp/test_functions.py",
 line 180, in test_difference
 self.assertEqual(c.mpoly.difference(geom), c.diff)
 AssertionError:  != 

 ==
 FAIL [0.120s]: test_difference_mixed_srid
 (gis_tests.geoapp.test_functions.GISFunctionsTests)
 --
 Traceback (most recent call last):
   File "/home/jenkins/workspace/django-
 
oracle-1.9/database/oragis12/label/trusty/python/python2.7/django/test/testcases.py",
 line 1093, in skip_wrapper
 return test_func(*args, **kwargs)
   File "/home/jenkins/workspace/django-
 
oracle-1.9/database/oragis12/label/trusty/python/python2.7/tests/gis_tests/geoapp/test_functions.py",
 line 191, in test_difference_mixed_srid
 self.assertEqual(c.mpoly.difference(geom), c.difference)
 AssertionError:  != 
 }}}

--
Ticket URL: <https://code.djangoproject.com/ticket/25438#comment:10>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.12a46acf9519998b5391bb5a57db576c%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #25438: Oracle GIS test failures for Django 1.9

2015-11-19 Thread Django
#25438: Oracle GIS test failures for Django 1.9
+
 Reporter:  timgraham   |Owner:  nobody
 Type:  Bug |   Status:  closed
Component:  GIS |  Version:  master
 Severity:  Normal  |   Resolution:  fixed
 Keywords:  oracle 1.9  | Triage Stage:  Accepted
Has patch:  1   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  0
Easy pickings:  0   |UI/UX:  0
+

Comment (by Tim Graham <timograham@…>):

 In [changeset:"ad0056567b611bad3422af6b99c935b4efce0316" ad005656]:
 {{{
 #!CommitTicketReference repository=""
 revision="ad0056567b611bad3422af6b99c935b4efce0316"
 [1.9.x] Fixed #25438 -- Fixed assorted Oracle GIS test failures.

 Backport of 58379d7e958fdf024f896b86f7df3415ce876200 from master
 }}}

--
Ticket URL: <https://code.djangoproject.com/ticket/25438#comment:9>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.4834466cd79e1c4bf8df6eeea949dfae%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #25438: Oracle GIS test failures for Django 1.9

2015-11-19 Thread Django
#25438: Oracle GIS test failures for Django 1.9
+
 Reporter:  timgraham   |Owner:  nobody
 Type:  Bug |   Status:  closed
Component:  GIS |  Version:  master
 Severity:  Normal  |   Resolution:  fixed
 Keywords:  oracle 1.9  | Triage Stage:  Accepted
Has patch:  1   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  0
Easy pickings:  0   |UI/UX:  0
+
Changes (by Tim Graham <timograham@…>):

 * status:  new => closed
 * resolution:   => fixed


Comment:

 In [changeset:"58379d7e958fdf024f896b86f7df3415ce876200" 58379d7e]:
 {{{
 #!CommitTicketReference repository=""
 revision="58379d7e958fdf024f896b86f7df3415ce876200"
 Fixed #25438 -- Fixed assorted Oracle GIS test failures.
 }}}

--
Ticket URL: <https://code.djangoproject.com/ticket/25438#comment:8>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.528df8fb49f6cef95ed300188173181f%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #25438: Oracle GIS test failures for Django 1.9

2015-10-26 Thread Django
#25438: Oracle GIS test failures for Django 1.9
+
 Reporter:  timgraham   |Owner:  nobody
 Type:  Bug |   Status:  new
Component:  GIS |  Version:  master
 Severity:  Normal  |   Resolution:
 Keywords:  oracle 1.9  | Triage Stage:  Accepted
Has patch:  0   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  0
Easy pickings:  0   |UI/UX:  0
+

Old description:

> After the patch for #24688 to add support for new-style GIS functions,
> some test failures remain:
> {{{
> gis_tests.geoapp.test_functions.GISFunctionsTests.test_difference
>
> Traceback (most recent call last):
>   File "/mnt/jenkinsdata/workspace/pull-requests-
> oracle/database/oragis11/python/python3.5/django/test/testcases.py", line
> 1093, in skip_wrapper
> return test_func(*args, **kwargs)
>   File "/mnt/jenkinsdata/workspace/pull-requests-
> oracle/database/oragis11/python/python3.5/tests/gis_tests/geoapp/test_functions.py",
> line 180, in test_difference
> self.assertEqual(c.mpoly.difference(geom), c.diff)
> AssertionError:  !=  object at 0x7f768d1df2b8>
>
> gis_tests.geoapp.test_functions.GISFunctionsTests.test_intersection
>
> Traceback (most recent call last):
>   File "/mnt/jenkinsdata/workspace/pull-requests-
> oracle/database/oragis11/python/python3.5/django/test/testcases.py", line
> 1093, in skip_wrapper
> return test_func(*args, **kwargs)
>   File "/mnt/jenkinsdata/workspace/pull-requests-
> oracle/database/oragis11/python/python3.5/tests/gis_tests/geoapp/test_functions.py",
> line 234, in test_intersection
> self.assertEqual(c.inter, expected)
> AssertionError: '' != 
>
> gis_tests.geoapp.test_functions.GISFunctionsTests.test_difference_mixed_srid
>
> Traceback (most recent call last):
>   File "/mnt/jenkinsdata/workspace/pull-requests-
> oracle/database/oragis11/python/python3.5/django/db/utils.py", line 102,
> in inner
> return func(*args, **kwargs)
>   File "/mnt/jenkinsdata/workspace/pull-requests-
> oracle/database/oragis11/python/python3.5/django/db/backends/oracle/base.py",
> line 516, in fetchmany
> return tuple(_rowfactory(r, self.cursor) for r in
> self.cursor.fetchmany(size))
> cx_Oracle.DatabaseError: ORA-13199: SRID does not exist.
> ORA-06512: at "MDSYS.MD", line 1723
> ORA-06512: at "MDSYS.MDERR", line 17
> ORA-06512: at "MDSYS.SDO_CS", line 5264
> ORA-06512: at "MDSYS.SDO_CS", line 3034
>
> gis_tests.geoapp.tests.GeoQuerySetTest.test_gml
>
> Traceback (most recent call last):
>   File "/mnt/jenkinsdata/workspace/pull-requests-
> oracle/database/oragis11/python/python3.5/django/test/testcases.py", line
> 1093, in skip_wrapper
> return test_func(*args, **kwargs)
>   File "/mnt/jenkinsdata/workspace/pull-requests-
> oracle/database/oragis11/python/python3.5/tests/gis_tests/geoapp/tests.py",
> line 635, in test_gml
> self.assertTrue(gml_regex.match(ptown.gml))
> AssertionError: None is not true
>
> gis_tests.geogapp.tests.GeographyFunctionTests.test_distance_function
>
> Traceback (most recent call last):
>   File "/mnt/jenkinsdata/workspace/pull-requests-
> oracle/database/oragis11/python/python3.5/django/test/testcases.py", line
> 1093, in skip_wrapper
> return test_func(*args, **kwargs)
>   File "/mnt/jenkinsdata/workspace/pull-requests-
> oracle/database/oragis11/python/python3.5/tests/gis_tests/geogapp/tests.py",
> line 120, in test_distance_function
> self.assertAlmostEqual(z.distance.m, ref, 2)
> AssertionError: 4899.67677194225 != 4891.2 within 2 places
> }}}

New description:

 After the patch for #24688 to add support for new-style GIS functions,
 some test failures remain:
 {{{
 gis_tests.geoapp.test_functions.GISFunctionsTests.test_difference

 Traceback (most recent call last):
   File "/mnt/jenkinsdata/workspace/pull-requests-
 oracle/database/oragis11/python/python3.5/django/test/testcases.py", line
 1093, in skip_wrapper
 return test_func(*args, **kwargs)
   File "/mnt/jenkinsdata/workspace/pull-requests-
 
oracle/database/oragis11/python/python3.5/tests/gis_tests/geoapp/test_functions.py",
 line 180, in test_difference
 self.assertEqual(c.mpoly.difference(geom), c.diff)
 AssertionError:  != 

 gis_tests.geoapp.test_functions.GISFunctionsTests.test_intersection

 Traceback (most recent call last):
   File "/mnt/jenkinsdata/w

Re: [Django] #25438: Oracle GIS test failures for Django 1.9

2015-09-22 Thread Django
#25438: Oracle GIS test failures for Django 1.9
+
 Reporter:  timgraham   |Owner:  nobody
 Type:  Bug |   Status:  new
Component:  GIS |  Version:  master
 Severity:  Normal  |   Resolution:
 Keywords:  oracle 1.9  | Triage Stage:  Accepted
Has patch:  0   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  0
Easy pickings:  0   |UI/UX:  0
+

Comment (by timgraham):

 Jenkins uses Oracle 11.2.0.1.0.

--
Ticket URL: <https://code.djangoproject.com/ticket/25438#comment:5>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.05b1d6f4bbc86f08362bacaa32787114%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #25438: Oracle GIS test failures for Django 1.9

2015-09-22 Thread Django
#25438: Oracle GIS test failures for Django 1.9
+
 Reporter:  timgraham   |Owner:  nobody
 Type:  Bug |   Status:  new
Component:  GIS |  Version:  master
 Severity:  Normal  |   Resolution:
 Keywords:  oracle 1.9  | Triage Stage:  Accepted
Has patch:  0   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  0
Easy pickings:  0   |UI/UX:  0
+

Comment (by felixxm):

 Replying to [ticket:25438 timgraham]:
 > After the patch for #24688 to add support for new-style GIS functions,
 some test failures remain:
 > {{{
 >
 gis_tests.geoapp.test_functions.GISFunctionsTests.test_difference_mixed_srid
 >
 > Traceback (most recent call last):
 >   File "/mnt/jenkinsdata/workspace/pull-requests-
 oracle/database/oragis11/python/python3.5/django/db/utils.py", line 102,
 in inner
 > return func(*args, **kwargs)
 >   File "/mnt/jenkinsdata/workspace/pull-requests-
 oracle/database/oragis11/python/python3.5/django/db/backends/oracle/base.py",
 line 516, in fetchmany
 > return tuple(_rowfactory(r, self.cursor) for r in
 self.cursor.fetchmany(size))
 > cx_Oracle.DatabaseError: ORA-13199: SRID does not exist.
 > ORA-06512: at "MDSYS.MD", line 1723
 > ORA-06512: at "MDSYS.MDERR", line 17
 > ORA-06512: at "MDSYS.SDO_CS", line 5264
 > ORA-06512: at "MDSYS.SDO_CS", line 3034
 > }}}

 Which Oracle  version has been used? In `test_difference_mixed_srid` test
 we can find crucial line :
 {{{
185: geom = Point(556597.4, 2632018.6, srid=3857)  # Spherical
 mercator
 }}}
 as we can see srid=3857 is needed, but it appeared in 11.2.0.3.

 http://docs.oracle.com/cd/E24693_01/appdev.11203/e11830/sdo_newfeat.htm

 In previous versions we will need to use srid=3785 instead.

--
Ticket URL: <https://code.djangoproject.com/ticket/25438#comment:4>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.0a8b9427409d4d69c6441780c14bc1d9%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #25438: Oracle GIS test failures for Django 1.9

2015-09-21 Thread Django
#25438: Oracle GIS test failures for Django 1.9
+
 Reporter:  timgraham   |Owner:  nobody
 Type:  Bug |   Status:  new
Component:  GIS |  Version:  master
 Severity:  Normal  |   Resolution:
 Keywords:  oracle 1.9  | Triage Stage:  Accepted
Has patch:  0   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  0
Easy pickings:  0   |UI/UX:  0
+
Description changed by timgraham:

Old description:

> After the patch for #24688 to add support for new-style GIS functions,
> some test failures remain:
> {{{
> gis_tests.geoapp.test_functions.GISFunctionsTests.test_difference
> gis_tests.geoapp.test_functions.GISFunctionsTests.test_intersection
> gis_tests.geoapp.test_functions.GISFunctionsTests.test_difference_mixed_srid
> gis_tests.geoapp.tests.GeoQuerySetTest.test_gml
> gis_tests.geogapp.tests.GeographyFunctionTests.test_distance_function
> }}}

New description:

 After the patch for #24688 to add support for new-style GIS functions,
 some test failures remain:
 {{{
 gis_tests.geoapp.test_functions.GISFunctionsTests.test_difference

 Traceback (most recent call last):
   File "/mnt/jenkinsdata/workspace/pull-requests-
 oracle/database/oragis11/python/python3.5/django/test/testcases.py", line
 1093, in skip_wrapper
 return test_func(*args, **kwargs)
   File "/mnt/jenkinsdata/workspace/pull-requests-
 
oracle/database/oragis11/python/python3.5/tests/gis_tests/geoapp/test_functions.py",
 line 180, in test_difference
 self.assertEqual(c.mpoly.difference(geom), c.diff)
 AssertionError:  != 

 gis_tests.geoapp.test_functions.GISFunctionsTests.test_intersection

 Traceback (most recent call last):
   File "/mnt/jenkinsdata/workspace/pull-requests-
 oracle/database/oragis11/python/python3.5/django/test/testcases.py", line
 1093, in skip_wrapper
 return test_func(*args, **kwargs)
   File "/mnt/jenkinsdata/workspace/pull-requests-
 
oracle/database/oragis11/python/python3.5/tests/gis_tests/geoapp/test_functions.py",
 line 234, in test_intersection
 self.assertEqual(c.inter, expected)
 AssertionError: '' != 

 gis_tests.geoapp.test_functions.GISFunctionsTests.test_difference_mixed_srid

 Traceback (most recent call last):
   File "/mnt/jenkinsdata/workspace/pull-requests-
 oracle/database/oragis11/python/python3.5/django/db/utils.py", line 102,
 in inner
 return func(*args, **kwargs)
   File "/mnt/jenkinsdata/workspace/pull-requests-
 oracle/database/oragis11/python/python3.5/django/db/backends/oracle/base.py",
 line 516, in fetchmany
 return tuple(_rowfactory(r, self.cursor) for r in
 self.cursor.fetchmany(size))
 cx_Oracle.DatabaseError: ORA-13199: SRID does not exist.
 ORA-06512: at "MDSYS.MD", line 1723
 ORA-06512: at "MDSYS.MDERR", line 17
 ORA-06512: at "MDSYS.SDO_CS", line 5264
 ORA-06512: at "MDSYS.SDO_CS", line 3034

 gis_tests.geoapp.tests.GeoQuerySetTest.test_gml

 Traceback (most recent call last):
   File "/mnt/jenkinsdata/workspace/pull-requests-
 oracle/database/oragis11/python/python3.5/django/test/testcases.py", line
 1093, in skip_wrapper
 return test_func(*args, **kwargs)
   File "/mnt/jenkinsdata/workspace/pull-requests-
 oracle/database/oragis11/python/python3.5/tests/gis_tests/geoapp/tests.py",
 line 635, in test_gml
 self.assertTrue(gml_regex.match(ptown.gml))
 AssertionError: None is not true

 gis_tests.geogapp.tests.GeographyFunctionTests.test_distance_function

 Traceback (most recent call last):
   File "/mnt/jenkinsdata/workspace/pull-requests-
 oracle/database/oragis11/python/python3.5/django/test/testcases.py", line
 1093, in skip_wrapper
 return test_func(*args, **kwargs)
   File "/mnt/jenkinsdata/workspace/pull-requests-
 oracle/database/oragis11/python/python3.5/tests/gis_tests/geogapp/tests.py",
 line 120, in test_distance_function
 self.assertAlmostEqual(z.distance.m, ref, 2)
 AssertionError: 4899.67677194225 != 4891.2 within 2 places
 }}}

--

--
Ticket URL: <https://code.djangoproject.com/ticket/25438#comment:3>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.a1dd4701ff10796d99fa2eca04da3ffe%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #25438: Oracle GIS test failures for Django 1.9

2015-09-21 Thread Django
#25438: Oracle GIS test failures for Django 1.9
+
 Reporter:  timgraham   |Owner:  nobody
 Type:  Bug |   Status:  new
Component:  GIS |  Version:  master
 Severity:  Normal  |   Resolution:
 Keywords:  oracle 1.9  | Triage Stage:  Accepted
Has patch:  0   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  0
Easy pickings:  0   |UI/UX:  0
+
Changes (by felixxm):

 * cc: felisiak.mariusz@… (added)


--
Ticket URL: <https://code.djangoproject.com/ticket/25438#comment:2>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.3e3031af76735eccbdec3abebe1b3b1e%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #25438: Oracle GIS test failures for Django 1.9

2015-09-21 Thread Django
#25438: Oracle GIS test failures for Django 1.9
+
 Reporter:  timgraham   |Owner:  nobody
 Type:  Bug |   Status:  new
Component:  GIS |  Version:  master
 Severity:  Normal  |   Resolution:
 Keywords:  oracle 1.9  | Triage Stage:  Accepted
Has patch:  0   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  0
Easy pickings:  0   |UI/UX:  0
+

Comment (by claudep):

 Having error tracebacks would be nice, too.

--
Ticket URL: <https://code.djangoproject.com/ticket/25438#comment:1>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.ede3f830c3a8be713d666cc83f23696b%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


[Django] #25438: Oracle GIS test failures for Django 1.9

2015-09-21 Thread Django
#25438: Oracle GIS test failures for Django 1.9
-+
   Reporter:  timgraham  |  Owner:  nobody
   Type:  Bug| Status:  new
  Component:  GIS|Version:  master
   Severity:  Normal |   Keywords:  oracle 1.9
   Triage Stage:  Accepted   |  Has patch:  0
Needs documentation:  0  |Needs tests:  0
Patch needs improvement:  0  |  Easy pickings:  0
  UI/UX:  0  |
-+
 After the patch for #24688 to add support for new-style GIS functions,
 some test failures remain:
 {{{
 gis_tests.geoapp.test_functions.GISFunctionsTests.test_difference
 gis_tests.geoapp.test_functions.GISFunctionsTests.test_intersection
 gis_tests.geoapp.test_functions.GISFunctionsTests.test_difference_mixed_srid
 gis_tests.geoapp.tests.GeoQuerySetTest.test_gml
 gis_tests.geogapp.tests.GeographyFunctionTests.test_distance_function
 }}}

--
Ticket URL: <https://code.djangoproject.com/ticket/25438>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/052.8b5796565aaa377e784eab90921ec30e%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.