Re: [web2py] Re: Why isn't WEB2PY a part of Googles summer of code? Will it be this time?

2016-10-13 Thread Mathieu Clabaut
So as not to wait forever, I did a quick extraction of the needed file in a
new github project : https://github.com/matclab/pytest-web2py.wip

I did not retest that everything was working in a new web2py projects. I'll
do it later, but i didn't want to postpone the publishing any longer.

There's a lot to do:
- separating things in a clean independant pytest plugin (obiously with
some more configuration w.r.t. web2py and applicatins paths),
- writing tests for the pytest-plugin,
- documenting pytest usage,
- documenting test writing (with pitfalls of unittest, use of mocks, …),
- writing more web2py default tests,

Hope it still may be of some use.

Best regards,
-Mathieu

On Fri, Oct 7, 2016 at 2:28 PM Mathieu Clabaut  wrote:

> Not for now.
> My intention was to put it on github, but it needs to be separated from my
> actual application code which I can not open source (for now).
> For the moment, I have  three directories (test_unit, test, test_ui) with
> a conftest.py in each allowing to use py.test on those directories. For UI
> test, I still have to launch a web2py instance before testing, but it could
> probably be integrated into the pytest plugin.
> There will be a bit of work for merging the three conftest.py in a single
> pytest plugin (and also some good API decisions to be made).
> If there is interest, I can try to set up a temporary git repo with my
> files (because it will take some time before I can find team to separate
> the testing environment from my application).
>
>
> On Fri, Oct 7, 2016 at 1:19 PM Marlysson Silva 
> wrote:
>
> I'm want know how you build this enviroment to tests with web2py.. in
> three layers .. Are your project in github?
>
>
> Em sexta-feira, 7 de outubro de 2016 03:46:17 UTC-3, Mathieu Clabaut
> escreveu:
>
> Hello,
>
>  I'm pondering to volunteer as a mentor for a pytest web2py framework, but
> I'm a bit afraid of my low level of availability.
>
>
>  What I a have in mind is a pytest plugin to allow three level of testing :
> 1. unit testing (with or without view rendering),
> 2. fast WebClient level testing (without javascript),
> 3. slow UI level testing (with javascript enable, via
> selenium+pytest-splinter or something like that).
> And for each level, a set of tests applied to the example application,
> that would contribute to overall web2py testing, the whole thing being run
> in continuous integration environment.
>
> I've already got some code for the 3 levels (which is now integrated with
> the application under test, but which could probably be rewritten with not
> too much difficulty has an independent py.test plugin), mostly working.
>
>  I'd better be not alone as a mentor, so if someone wants to jump in,
> please do not be shy :-) I'd certainly prefer to be there in support than
> to bear alone the whole mentoring role.
>
> -Mathieu
>
> On Thu, Oct 6, 2016 at 11:58 PM joseph simpson  wrote:
>
> Develop a standard testing framework for Web2py.
>
> On Thu, Oct 6, 2016 at 12:25 PM, Dave S  wrote:
>
>
>
> On Thursday, October 6, 2016 at 7:29:03 AM UTC-7, Steve Joe wrote:
>
> I am seeing that Django, RoR all are on GSOC. Maybe web2py too should be
> there.
>
>
> That requires a project proposal with a fairly well defined scope (I've
> seen the Mercurial people dealing with that).  Do you have any  specific
> suggestions?
>
> /dps
>
> --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to the Google Groups
> "web2py-users" group.
>
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+un...@googlegroups.com.
>
>
> For more options, visit https://groups.google.com/d/optout.
>
> --
> Joe Simpson
> “Reasonable people adapt themselves to the world. Unreasonable people
> attempt to adapt the world to themselves. All progress, therefore,
> depends on unreasonable people.”
> George Bernard Shaw
>
> --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to the Google Groups
> "web2py-users" group.
>
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+un...@googlegroups.com.
>
>
> For more options, visit https://groups.google.com/d/optout.
>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an 

Re: [web2py] Re: Why isn't WEB2PY a part of Googles summer of code? Will it be this time?

2016-10-12 Thread Massimo DiPierro
i cannot commit 10hrs either.. but review the link

On Oct 12, 2016 2:20 AM, "Mathieu Clabaut"  wrote:

>
> The dates are published : https://developers.google.com/
> open-source/gsoc/timeline
> We have some time to prepare an application if we decide to go.
> Just for us to know, Google advertises that : "Mentors should expect to
> spend at least 10 hours a week for each student".
> It seems a reasonable average to me in order to be useful for the student,
> but I'm still afraid I'd be overly optimistic in saying I will be able to
> spare 10 hours a week…
>
> So unless unexpected changes in my life, it is probably not a good idea to
> promise things I won't be able to cope with.
> …
>
>
> On Wed, Oct 12, 2016 at 5:16 AM Massimo Di Pierro <
> massimo.dipie...@gmail.com> wrote:
>
>> If you need any help with the proposal, let me know.
>>
>>
>> On Friday, 7 October 2016 01:46:17 UTC-5, Mathieu Clabaut wrote:
>>
>> Hello,
>>
>>  I'm pondering to volunteer as a mentor for a pytest web2py framework,
>> but I'm a bit afraid of my low level of availability.
>>
>>  What I a have in mind is a pytest plugin to allow three level of testing
>> :
>> 1. unit testing (with or without view rendering),
>> 2. fast WebClient level testing (without javascript),
>> 3. slow UI level testing (with javascript enable, via
>> selenium+pytest-splinter or something like that).
>> And for each level, a set of tests applied to the example application,
>> that would contribute to overall web2py testing, the whole thing being run
>> in continuous integration environment.
>>
>> I've already got some code for the 3 levels (which is now integrated with
>> the application under test, but which could probably be rewritten with not
>> too much difficulty has an independent py.test plugin), mostly working.
>>
>>  I'd better be not alone as a mentor, so if someone wants to jump in,
>> please do not be shy :-) I'd certainly prefer to be there in support than
>> to bear alone the whole mentoring role.
>>
>> -Mathieu
>>
>> On Thu, Oct 6, 2016 at 11:58 PM joseph simpson  wrote:
>>
>> Develop a standard testing framework for Web2py.
>>
>> On Thu, Oct 6, 2016 at 12:25 PM, Dave S  wrote:
>>
>>
>>
>> On Thursday, October 6, 2016 at 7:29:03 AM UTC-7, Steve Joe wrote:
>>
>> I am seeing that Django, RoR all are on GSOC. Maybe web2py too should be
>> there.
>>
>>
>> That requires a project proposal with a fairly well defined scope (I've
>> seen the Mercurial people dealing with that).  Do you have any  specific
>> suggestions?
>>
>> /dps
>>
>> --
>> Resources:
>> - http://web2py.com
>> - http://web2py.com/book (Documentation)
>> - http://github.com/web2py/web2py (Source code)
>> - https://code.google.com/p/web2py/issues/list (Report Issues)
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "web2py-users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to web2py+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>>
>>
>>
>> --
>> Joe Simpson
>> “Reasonable people adapt themselves to the world. Unreasonable people
>> attempt to adapt the world to themselves. All progress, therefore,
>> depends on unreasonable people.”
>> George Bernard Shaw
>>
>> --
>> Resources:
>> - http://web2py.com
>> - http://web2py.com/book (Documentation)
>> - http://github.com/web2py/web2py (Source code)
>> - https://code.google.com/p/web2py/issues/list (Report Issues)
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "web2py-users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to web2py+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: Why isn't WEB2PY a part of Googles summer of code? Will it be this time?

2016-10-12 Thread Mathieu Clabaut
The dates are published :
https://developers.google.com/open-source/gsoc/timeline
We have some time to prepare an application if we decide to go.
Just for us to know, Google advertises that : "Mentors should expect to
spend at least 10 hours a week for each student".
It seems a reasonable average to me in order to be useful for the student,
but I'm still afraid I'd be overly optimistic in saying I will be able to
spare 10 hours a week…

So unless unexpected changes in my life, it is probably not a good idea to
promise things I won't be able to cope with.
…


On Wed, Oct 12, 2016 at 5:16 AM Massimo Di Pierro <
massimo.dipie...@gmail.com> wrote:

> If you need any help with the proposal, let me know.
>
>
> On Friday, 7 October 2016 01:46:17 UTC-5, Mathieu Clabaut wrote:
>
> Hello,
>
>  I'm pondering to volunteer as a mentor for a pytest web2py framework, but
> I'm a bit afraid of my low level of availability.
>
>  What I a have in mind is a pytest plugin to allow three level of testing :
> 1. unit testing (with or without view rendering),
> 2. fast WebClient level testing (without javascript),
> 3. slow UI level testing (with javascript enable, via
> selenium+pytest-splinter or something like that).
> And for each level, a set of tests applied to the example application,
> that would contribute to overall web2py testing, the whole thing being run
> in continuous integration environment.
>
> I've already got some code for the 3 levels (which is now integrated with
> the application under test, but which could probably be rewritten with not
> too much difficulty has an independent py.test plugin), mostly working.
>
>  I'd better be not alone as a mentor, so if someone wants to jump in,
> please do not be shy :-) I'd certainly prefer to be there in support than
> to bear alone the whole mentoring role.
>
> -Mathieu
>
> On Thu, Oct 6, 2016 at 11:58 PM joseph simpson  wrote:
>
> Develop a standard testing framework for Web2py.
>
> On Thu, Oct 6, 2016 at 12:25 PM, Dave S  wrote:
>
>
>
> On Thursday, October 6, 2016 at 7:29:03 AM UTC-7, Steve Joe wrote:
>
> I am seeing that Django, RoR all are on GSOC. Maybe web2py too should be
> there.
>
>
> That requires a project proposal with a fairly well defined scope (I've
> seen the Mercurial people dealing with that).  Do you have any  specific
> suggestions?
>
> /dps
>
> --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to the Google Groups
> "web2py-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
>
>
>
> --
> Joe Simpson
> “Reasonable people adapt themselves to the world. Unreasonable people
> attempt to adapt the world to themselves. All progress, therefore,
> depends on unreasonable people.”
> George Bernard Shaw
>
> --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to the Google Groups
> "web2py-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: Why isn't WEB2PY a part of Googles summer of code? Will it be this time?

2016-10-11 Thread Massimo Di Pierro
If you need any help with the proposal, let me know.

On Friday, 7 October 2016 01:46:17 UTC-5, Mathieu Clabaut wrote:
>
> Hello,
>
>  I'm pondering to volunteer as a mentor for a pytest web2py framework, but 
> I'm a bit afraid of my low level of availability.
>
>  What I a have in mind is a pytest plugin to allow three level of testing :
> 1. unit testing (with or without view rendering),
> 2. fast WebClient level testing (without javascript),
> 3. slow UI level testing (with javascript enable, via 
> selenium+pytest-splinter or something like that).
> And for each level, a set of tests applied to the example application, 
> that would contribute to overall web2py testing, the whole thing being run 
> in continuous integration environment.
>
> I've already got some code for the 3 levels (which is now integrated with 
> the application under test, but which could probably be rewritten with not 
> too much difficulty has an independent py.test plugin), mostly working. 
>
>  I'd better be not alone as a mentor, so if someone wants to jump in, 
> please do not be shy :-) I'd certainly prefer to be there in support than 
> to bear alone the whole mentoring role.
>
> -Mathieu
>
> On Thu, Oct 6, 2016 at 11:58 PM joseph simpson  wrote:
>
>> Develop a standard testing framework for Web2py.
>>
>> On Thu, Oct 6, 2016 at 12:25 PM, Dave S  wrote:
>>
>>>
>>>
>>> On Thursday, October 6, 2016 at 7:29:03 AM UTC-7, Steve Joe wrote:

 I am seeing that Django, RoR all are on GSOC. Maybe web2py too should 
 be there.

>>>
>>> That requires a project proposal with a fairly well defined scope (I've 
>>> seen the Mercurial people dealing with that).  Do you have any  specific 
>>> suggestions?
>>>
>>> /dps
>>>
>>> -- 
>>> Resources:
>>> - http://web2py.com
>>> - http://web2py.com/book (Documentation)
>>> - http://github.com/web2py/web2py (Source code)
>>> - https://code.google.com/p/web2py/issues/list (Report Issues)
>>> --- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "web2py-users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to web2py+unsubscr...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> -- 
>> Joe Simpson
>> “Reasonable people adapt themselves to the world. Unreasonable people 
>> attempt to adapt the world to themselves. All progress, therefore, 
>> depends on unreasonable people.”
>> George Bernard Shaw
>>
>> -- 
>> Resources:
>> - http://web2py.com
>> - http://web2py.com/book (Documentation)
>> - http://github.com/web2py/web2py (Source code)
>> - https://code.google.com/p/web2py/issues/list (Report Issues)
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "web2py-users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to web2py+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Why isn't WEB2PY a part of Googles summer of code? Will it be this time?

2016-10-11 Thread Massimo Di Pierro
Other than writing good practice docs, what else is needed?

On Thursday, 6 October 2016 17:19:42 UTC-5, JorgeH wrote:
>
> scalable restful web2py apps, with redis, postgres and mongodb
>
> On Thursday, October 6, 2016 at 2:25:52 PM UTC-5, Dave S wrote:
>>
>>
>>
>> On Thursday, October 6, 2016 at 7:29:03 AM UTC-7, Steve Joe wrote:
>>>
>>> I am seeing that Django, RoR all are on GSOC. Maybe web2py too should be 
>>> there.
>>>
>>
>> That requires a project proposal with a fairly well defined scope (I've 
>> seen the Mercurial people dealing with that).  Do you have any  specific 
>> suggestions?
>>
>> /dps
>>
>>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: Why isn't WEB2PY a part of Googles summer of code? Will it be this time?

2016-10-07 Thread Anthony
Maybe have a look at https://github.com/viniciusban/web2py.test.

Anthony

On Friday, October 7, 2016 at 2:46:17 AM UTC-4, Mathieu Clabaut wrote:
>
> Hello,
>
>  I'm pondering to volunteer as a mentor for a pytest web2py framework, but 
> I'm a bit afraid of my low level of availability.
>
>  What I a have in mind is a pytest plugin to allow three level of testing :
> 1. unit testing (with or without view rendering),
> 2. fast WebClient level testing (without javascript),
> 3. slow UI level testing (with javascript enable, via 
> selenium+pytest-splinter or something like that).
> And for each level, a set of tests applied to the example application, 
> that would contribute to overall web2py testing, the whole thing being run 
> in continuous integration environment.
>
> I've already got some code for the 3 levels (which is now integrated with 
> the application under test, but which could probably be rewritten with not 
> too much difficulty has an independent py.test plugin), mostly working. 
>
>  I'd better be not alone as a mentor, so if someone wants to jump in, 
> please do not be shy :-) I'd certainly prefer to be there in support than 
> to bear alone the whole mentoring role.
>
> -Mathieu
>
> On Thu, Oct 6, 2016 at 11:58 PM joseph simpson  wrote:
>
>> Develop a standard testing framework for Web2py.
>>
>> On Thu, Oct 6, 2016 at 12:25 PM, Dave S  wrote:
>>
>>>
>>>
>>> On Thursday, October 6, 2016 at 7:29:03 AM UTC-7, Steve Joe wrote:

 I am seeing that Django, RoR all are on GSOC. Maybe web2py too should 
 be there.

>>>
>>> That requires a project proposal with a fairly well defined scope (I've 
>>> seen the Mercurial people dealing with that).  Do you have any  specific 
>>> suggestions?
>>>
>>> /dps
>>>
>>> -- 
>>> Resources:
>>> - http://web2py.com
>>> - http://web2py.com/book (Documentation)
>>> - http://github.com/web2py/web2py (Source code)
>>> - https://code.google.com/p/web2py/issues/list (Report Issues)
>>> --- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "web2py-users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to web2py+unsubscr...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> -- 
>> Joe Simpson
>> “Reasonable people adapt themselves to the world. Unreasonable people 
>> attempt to adapt the world to themselves. All progress, therefore, 
>> depends on unreasonable people.”
>> George Bernard Shaw
>>
>> -- 
>> Resources:
>> - http://web2py.com
>> - http://web2py.com/book (Documentation)
>> - http://github.com/web2py/web2py (Source code)
>> - https://code.google.com/p/web2py/issues/list (Report Issues)
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "web2py-users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to web2py+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: Why isn't WEB2PY a part of Googles summer of code? Will it be this time?

2016-10-07 Thread Marlysson Silva
great if you give to do for me ok ..

Em sexta-feira, 7 de outubro de 2016 09:28:43 UTC-3, Mathieu Clabaut 
escreveu:
>
> Not for now.
> My intention was to put it on github, but it needs to be separated from my 
> actual application code which I can not open source (for now).
> For the moment, I have  three directories (test_unit, test, test_ui) with 
> a conftest.py in each allowing to use py.test on those directories. For UI 
> test, I still have to launch a web2py instance before testing, but it could 
> probably be integrated into the pytest plugin.
> There will be a bit of work for merging the three conftest.py in a single 
> pytest plugin (and also some good API decisions to be made).
> If there is interest, I can try to set up a temporary git repo with my 
> files (because it will take some time before I can find team to separate 
> the testing environment from my application).
>
>
> On Fri, Oct 7, 2016 at 1:19 PM Marlysson Silva  > wrote:
>
>> I'm want know how you build this enviroment to tests with web2py.. in 
>> three layers .. Are your project in github?
>>
>>
>> Em sexta-feira, 7 de outubro de 2016 03:46:17 UTC-3, Mathieu Clabaut 
>> escreveu:
>>
>>> Hello,
>>>
>>>  I'm pondering to volunteer as a mentor for a pytest web2py framework, 
>>> but I'm a bit afraid of my low level of availability.
>>>
>>
>>>  What I a have in mind is a pytest plugin to allow three level of 
>>> testing :
>>> 1. unit testing (with or without view rendering),
>>> 2. fast WebClient level testing (without javascript),
>>> 3. slow UI level testing (with javascript enable, via 
>>> selenium+pytest-splinter or something like that).
>>> And for each level, a set of tests applied to the example application, 
>>> that would contribute to overall web2py testing, the whole thing being run 
>>> in continuous integration environment.
>>>
>>> I've already got some code for the 3 levels (which is now integrated 
>>> with the application under test, but which could probably be rewritten with 
>>> not too much difficulty has an independent py.test plugin), mostly working. 
>>>
>>>  I'd better be not alone as a mentor, so if someone wants to jump in, 
>>> please do not be shy :-) I'd certainly prefer to be there in support than 
>>> to bear alone the whole mentoring role.
>>>
>>> -Mathieu
>>>
>> On Thu, Oct 6, 2016 at 11:58 PM joseph simpson  wrote:
>>>
>> Develop a standard testing framework for Web2py.

>>> On Thu, Oct 6, 2016 at 12:25 PM, Dave S  wrote:

>>>
>
> On Thursday, October 6, 2016 at 7:29:03 AM UTC-7, Steve Joe wrote:
>>
>> I am seeing that Django, RoR all are on GSOC. Maybe web2py too should 
>> be there.
>>
>
> That requires a project proposal with a fairly well defined scope 
> (I've seen the Mercurial people dealing with that).  Do you have any  
> specific suggestions?
>
> /dps
>
> -- 
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> --- 
> You received this message because you are subscribed to the Google 
> Groups "web2py-users" group.
>
 To unsubscribe from this group and stop receiving emails from it, send 
> an email to web2py+un...@googlegroups.com.
>

> For more options, visit https://groups.google.com/d/optout.
>
 -- 
 Joe Simpson
 “Reasonable people adapt themselves to the world. Unreasonable people 
 attempt to adapt the world to themselves. All progress, therefore, 
 depends on unreasonable people.”
 George Bernard Shaw

 -- 
 Resources:
 - http://web2py.com
 - http://web2py.com/book (Documentation)
 - http://github.com/web2py/web2py (Source code)
 - https://code.google.com/p/web2py/issues/list (Report Issues)
 --- 
 You received this message because you are subscribed to the Google 
 Groups "web2py-users" group.

>>> To unsubscribe from this group and stop receiving emails from it, send 
 an email to web2py+un...@googlegroups.com.
>>>
>>>
 For more options, visit https://groups.google.com/d/optout.

>>>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: Why isn't WEB2PY a part of Googles summer of code? Will it be this time?

2016-10-07 Thread Mathieu Clabaut
Not for now.
My intention was to put it on github, but it needs to be separated from my
actual application code which I can not open source (for now).
For the moment, I have  three directories (test_unit, test, test_ui) with a
conftest.py in each allowing to use py.test on those directories. For UI
test, I still have to launch a web2py instance before testing, but it could
probably be integrated into the pytest plugin.
There will be a bit of work for merging the three conftest.py in a single
pytest plugin (and also some good API decisions to be made).
If there is interest, I can try to set up a temporary git repo with my
files (because it will take some time before I can find team to separate
the testing environment from my application).


On Fri, Oct 7, 2016 at 1:19 PM Marlysson Silva  wrote:

> I'm want know how you build this enviroment to tests with web2py.. in
> three layers .. Are your project in github?
>
>
> Em sexta-feira, 7 de outubro de 2016 03:46:17 UTC-3, Mathieu Clabaut
> escreveu:
>
> Hello,
>
>  I'm pondering to volunteer as a mentor for a pytest web2py framework, but
> I'm a bit afraid of my low level of availability.
>
>
>  What I a have in mind is a pytest plugin to allow three level of testing :
> 1. unit testing (with or without view rendering),
> 2. fast WebClient level testing (without javascript),
> 3. slow UI level testing (with javascript enable, via
> selenium+pytest-splinter or something like that).
> And for each level, a set of tests applied to the example application,
> that would contribute to overall web2py testing, the whole thing being run
> in continuous integration environment.
>
> I've already got some code for the 3 levels (which is now integrated with
> the application under test, but which could probably be rewritten with not
> too much difficulty has an independent py.test plugin), mostly working.
>
>  I'd better be not alone as a mentor, so if someone wants to jump in,
> please do not be shy :-) I'd certainly prefer to be there in support than
> to bear alone the whole mentoring role.
>
> -Mathieu
>
> On Thu, Oct 6, 2016 at 11:58 PM joseph simpson  wrote:
>
> Develop a standard testing framework for Web2py.
>
> On Thu, Oct 6, 2016 at 12:25 PM, Dave S  wrote:
>
>
>
> On Thursday, October 6, 2016 at 7:29:03 AM UTC-7, Steve Joe wrote:
>
> I am seeing that Django, RoR all are on GSOC. Maybe web2py too should be
> there.
>
>
> That requires a project proposal with a fairly well defined scope (I've
> seen the Mercurial people dealing with that).  Do you have any  specific
> suggestions?
>
> /dps
>
> --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to the Google Groups
> "web2py-users" group.
>
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+un...@googlegroups.com.
>
>
> For more options, visit https://groups.google.com/d/optout.
>
> --
> Joe Simpson
> “Reasonable people adapt themselves to the world. Unreasonable people
> attempt to adapt the world to themselves. All progress, therefore,
> depends on unreasonable people.”
> George Bernard Shaw
>
> --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to the Google Groups
> "web2py-users" group.
>
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+un...@googlegroups.com.
>
>
> For more options, visit https://groups.google.com/d/optout.
>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: Why isn't WEB2PY a part of Googles summer of code? Will it be this time?

2016-10-07 Thread Marlysson Silva
I'm want know how you build this enviroment to tests with web2py.. in three 
layers .. Are your project in github?

Em sexta-feira, 7 de outubro de 2016 03:46:17 UTC-3, Mathieu Clabaut 
escreveu:
>
> Hello,
>
>  I'm pondering to volunteer as a mentor for a pytest web2py framework, but 
> I'm a bit afraid of my low level of availability.
>
>  What I a have in mind is a pytest plugin to allow three level of testing :
> 1. unit testing (with or without view rendering),
> 2. fast WebClient level testing (without javascript),
> 3. slow UI level testing (with javascript enable, via 
> selenium+pytest-splinter or something like that).
> And for each level, a set of tests applied to the example application, 
> that would contribute to overall web2py testing, the whole thing being run 
> in continuous integration environment.
>
> I've already got some code for the 3 levels (which is now integrated with 
> the application under test, but which could probably be rewritten with not 
> too much difficulty has an independent py.test plugin), mostly working. 
>
>  I'd better be not alone as a mentor, so if someone wants to jump in, 
> please do not be shy :-) I'd certainly prefer to be there in support than 
> to bear alone the whole mentoring role.
>
> -Mathieu
>
> On Thu, Oct 6, 2016 at 11:58 PM joseph simpson  > wrote:
>
>> Develop a standard testing framework for Web2py.
>>
>> On Thu, Oct 6, 2016 at 12:25 PM, Dave S > > wrote:
>>
>>>
>>>
>>> On Thursday, October 6, 2016 at 7:29:03 AM UTC-7, Steve Joe wrote:

 I am seeing that Django, RoR all are on GSOC. Maybe web2py too should 
 be there.

>>>
>>> That requires a project proposal with a fairly well defined scope (I've 
>>> seen the Mercurial people dealing with that).  Do you have any  specific 
>>> suggestions?
>>>
>>> /dps
>>>
>>> -- 
>>> Resources:
>>> - http://web2py.com
>>> - http://web2py.com/book (Documentation)
>>> - http://github.com/web2py/web2py (Source code)
>>> - https://code.google.com/p/web2py/issues/list (Report Issues)
>>> --- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "web2py-users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to web2py+un...@googlegroups.com .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> -- 
>> Joe Simpson
>> “Reasonable people adapt themselves to the world. Unreasonable people 
>> attempt to adapt the world to themselves. All progress, therefore, 
>> depends on unreasonable people.”
>> George Bernard Shaw
>>
>> -- 
>> Resources:
>> - http://web2py.com
>> - http://web2py.com/book (Documentation)
>> - http://github.com/web2py/web2py (Source code)
>> - https://code.google.com/p/web2py/issues/list (Report Issues)
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "web2py-users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to web2py+un...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: Why isn't WEB2PY a part of Googles summer of code? Will it be this time?

2016-10-07 Thread Mathieu Clabaut
Hello,

 I'm pondering to volunteer as a mentor for a pytest web2py framework, but
I'm a bit afraid of my low level of availability.

 What I a have in mind is a pytest plugin to allow three level of testing :
1. unit testing (with or without view rendering),
2. fast WebClient level testing (without javascript),
3. slow UI level testing (with javascript enable, via
selenium+pytest-splinter or something like that).
And for each level, a set of tests applied to the example application, that
would contribute to overall web2py testing, the whole thing being run in
continuous integration environment.

I've already got some code for the 3 levels (which is now integrated with
the application under test, but which could probably be rewritten with not
too much difficulty has an independent py.test plugin), mostly working.

 I'd better be not alone as a mentor, so if someone wants to jump in,
please do not be shy :-) I'd certainly prefer to be there in support than
to bear alone the whole mentoring role.

-Mathieu

On Thu, Oct 6, 2016 at 11:58 PM joseph simpson  wrote:

> Develop a standard testing framework for Web2py.
>
> On Thu, Oct 6, 2016 at 12:25 PM, Dave S  wrote:
>
>
>
> On Thursday, October 6, 2016 at 7:29:03 AM UTC-7, Steve Joe wrote:
>
> I am seeing that Django, RoR all are on GSOC. Maybe web2py too should be
> there.
>
>
> That requires a project proposal with a fairly well defined scope (I've
> seen the Mercurial people dealing with that).  Do you have any  specific
> suggestions?
>
> /dps
>
> --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to the Google Groups
> "web2py-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
>
>
>
> --
> Joe Simpson
> “Reasonable people adapt themselves to the world. Unreasonable people
> attempt to adapt the world to themselves. All progress, therefore,
> depends on unreasonable people.”
> George Bernard Shaw
>
> --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to the Google Groups
> "web2py-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Why isn't WEB2PY a part of Googles summer of code? Will it be this time?

2016-10-06 Thread Dave S


On Thursday, October 6, 2016 at 12:25:52 PM UTC-7, Dave S wrote:
>
>
>
> On Thursday, October 6, 2016 at 7:29:03 AM UTC-7, Steve Joe wrote:
>>
>> I am seeing that Django, RoR all are on GSOC. Maybe web2py too should be 
>> there.
>>
>
> That requires a project proposal with a fairly well defined scope (I've 
> seen the Mercurial people dealing with that).  Do you have any  specific 
> suggestions?
>
>
I should also mention it requires at least 1 mentor to be interacting with 
the gsoc-er.

/dps
 

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Why isn't WEB2PY a part of Googles summer of code? Will it be this time?

2016-10-06 Thread JorgeH
scalable restful web2py apps, with redis, postgres and mongodb

On Thursday, October 6, 2016 at 2:25:52 PM UTC-5, Dave S wrote:
>
>
>
> On Thursday, October 6, 2016 at 7:29:03 AM UTC-7, Steve Joe wrote:
>>
>> I am seeing that Django, RoR all are on GSOC. Maybe web2py too should be 
>> there.
>>
>
> That requires a project proposal with a fairly well defined scope (I've 
> seen the Mercurial people dealing with that).  Do you have any  specific 
> suggestions?
>
> /dps
>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: Why isn't WEB2PY a part of Googles summer of code? Will it be this time?

2016-10-06 Thread joseph simpson
Develop a standard testing framework for Web2py.

On Thu, Oct 6, 2016 at 12:25 PM, Dave S  wrote:

>
>
> On Thursday, October 6, 2016 at 7:29:03 AM UTC-7, Steve Joe wrote:
>>
>> I am seeing that Django, RoR all are on GSOC. Maybe web2py too should be
>> there.
>>
>
> That requires a project proposal with a fairly well defined scope (I've
> seen the Mercurial people dealing with that).  Do you have any  specific
> suggestions?
>
> /dps
>
> --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to the Google Groups
> "web2py-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Joe Simpson
“Reasonable people adapt themselves to the world. Unreasonable people
attempt to adapt the world to themselves. All progress, therefore, depends
on unreasonable people.”
George Bernard Shaw

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Why isn't WEB2PY a part of Googles summer of code? Will it be this time?

2016-10-06 Thread Dave S


On Thursday, October 6, 2016 at 7:29:03 AM UTC-7, Steve Joe wrote:
>
> I am seeing that Django, RoR all are on GSOC. Maybe web2py too should be 
> there.
>

That requires a project proposal with a fairly well defined scope (I've 
seen the Mercurial people dealing with that).  Do you have any  specific 
suggestions?

/dps

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.