Re: [pytest-dev] Sprint this summer?

2017-03-16 Thread Bruno Oliveira
On Wed, Mar 15, 2017 at 10:16 AM Oliver Bestwalter wrote: > just want to get the ball rolling and ask if planning has started already > and how I can help. > AFAIK there's no planning yet. I imagine that managing a sprint is quite some work as Holger can attest to, so it would be nice if someone

Re: [pytest-dev] [proposal] big flake8 cleanup before the 3.1 release

2017-03-17 Thread Bruno Oliveira
Hi, While this kind of change is a little disruptive regarding history and might generate conflicts in PRs, it is the kind of change that is a little pain for a short time but brings tangible benefits in the long term, so I'm +1 on the idea. An idea: when doing something similar at work (recently

Re: [pytest-dev] [proposal] using towncrier for merge-friendly changelog management

2017-03-21 Thread Bruno Oliveira
Hi Ronny, I definitely like the idea! I agree our current CHANGELOG maintenance could use some improvement. :) We could introduce it for `3.1`, what do you think? On Tue, Mar 21, 2017 at 5:54 AM Ronny Pfannschmidt < opensou...@ronnypfannschmidt.de> wrote: > Hi all, > > today i noticed how pip m

Re: [pytest-dev] [proposal] using towncrier for merge-friendly changelog management

2017-03-21 Thread Bruno Oliveira
right after 3.1 > > after all the before bits are already in place > > -- Ronny > > On 21.03.2017 14:41, Bruno Oliveira wrote: > > Hi Ronny, > > > > I definitely like the idea! I agree our current CHANGELOG maintenance > > could use some improvement. :) > > >

Re: [pytest-dev] [proposal] using towncrier for merge-friendly changelog management

2017-03-21 Thread Bruno Oliveira
gt; > -- Ronny > > On 21.03.2017 16:32, Bruno Oliveira wrote: > > Hey Ronny, > > Oh you are absolutely right. > > Do you know what happens with the old CHANGELOG entries btw? > > Cheers, > > On Tue, Mar 21, 2017 at 12:29 PM Ronny Pfannschmidt < > opensou..

[pytest-dev] Travis auto-cancellation enabled

2017-03-22 Thread Bruno Oliveira
Hi everyone, Travis introduced "auto-cancellation", meaning that if a new commit is pushed to a branch or PR, any queued builds for the previous commit in that branch or PR is cancelled automatically. I think this is a great idea as it avoids building older commits which are probably no longer re

Re: [pytest-dev] Mozilla Open Source Support

2017-03-24 Thread Bruno Oliveira
Hi all, Has any work on creating a "pytest" like organization moved forward? That would be great in terms of making it easy to get sponsorship from any number of means. Cheers, Bruno. On Mon, Feb 27, 2017 at 6:43 AM Thomas Lotze wrote: > Hi Raphael, > > thank you for your reply. Given the numb

Re: [pytest-dev] doc/docs.pytest.org now proper with https

2017-03-29 Thread Bruno Oliveira
Sounds good! On Wed, Mar 29, 2017 at 12:27 PM Ronny Pfannschmidt < opensou...@ronnypfannschmidt.de> wrote: > +1 > > > On 29.03.2017 16:30, holger krekel wrote: > > Thanks to Florian Schulze who instantiated an nginx/letsencrypt > > proxy on the planet.pytest.org pytest now serves ssl directly > >

[pytest-dev] [3.1 feature] "assert not raise exception" helper: opinions about the name

2017-03-30 Thread Bruno Oliveira
Hi all, We are about to land on the features branch an implementation of the proposal outlined by Florian Bruhin ( https://github.com/pytest-dev/pytest/issues/1830) where we introduce a small helper to facilitate writing parametrized tests that sometimes raise an error for an input parameter and s

Re: [pytest-dev] [3.1 feature] "assert not raise exception" helper: opinions about the name

2017-03-30 Thread Bruno Oliveira
On Thu, Mar 30, 2017 at 4:32 PM holger krekel wrote: > It's a bit odd to introduce a new helper just for this particular case. > After skimming https://github.com/pytest-dev/pytest/issues/1830 > i'd prefer the mentioned pytest.raises(None) solution which lets through > all exceptions > of the dep

Re: [pytest-dev] [3.1 feature] "assert not raise exception" helper: opinions about the name

2017-03-31 Thread Bruno Oliveira
Hi all, On Fri, Mar 31, 2017 at 7:13 AM Vasily Kuznetsov wrote: > Hi Holger and Ronny, > > I see merit in both of your points. All those "is not None" checks in > between other logic and the proposed "raises unless the argument is None" > semantics of pytest.raises do increase complexity (I'm no

Re: [pytest-dev] [3.1 feature] "assert not raise exception" helper: opinions about the name

2017-04-04 Thread Bruno Oliveira
On Fri, Mar 31, 2017 at 8:24 AM Bruno Oliveira wrote: > Hi all, > > On Fri, Mar 31, 2017 at 7:13 AM Vasily Kuznetsov > wrote: > > Hi Holger and Ronny, > > I see merit in both of your points. All those "is not None" checks in > between other logic and the pr

Re: [pytest-dev] [3.1 feature] "assert not raise exception" helper: opinions about the name

2017-04-05 Thread Bruno Oliveira
he semantics of pytest.raises(None) would be obvious, but it seems that's not the case (at least in my small poll of around the office). Given all that I'm now leaning towards going through the safe route of being more explicit albeit more verbose. What do others think? Cheers, Bruno. &

Re: [pytest-dev] [3.1 feature] "assert not raise exception" helper: opinions about the name

2017-04-05 Thread Bruno Oliveira
Hi Walter! On Wed, Apr 5, 2017 at 7:00 PM Oliver Bestwalter wrote: > ... and this would be a bit harder to understand, because as Bruno found > out already, there are quite different expectations about what is supposed > to happen if I write pytest.raises(None). > > Am I missing something? > No

Re: [pytest-dev] Need access to parameter IDs during pytest_collection_modifyitems

2017-04-06 Thread Bruno Oliveira
Hi Pete, On Thu, Apr 6, 2017 at 7:26 AM Pete Savage wrote: > Is there any way I can construct this information? > I'm not sure, by the time modifyitems hook is called all items have already been constructed, and the original ids seem to have been lost. See here: https://github.com/pytest-dev/p

Re: [pytest-dev] [3.1 feature] "assert not raise exception" helper: opinions about the name

2017-04-07 Thread Bruno Oliveira
Hi Holger, everyone, On Thu, Apr 6, 2017 at 3:30 AM holger krekel wrote: > > I am fine to have user-tests guide the decision ... so now for me it's > only between offering a context manager or offering a special > "NoExceptionRaised" object which you can give to pytest.raises(...). > so we are

Re: [pytest-dev] [proposal] abolishing the features branch

2017-04-13 Thread Bruno Oliveira
On Thu, Apr 13, 2017 at 1:35 PM Florian Bruhin wrote: > Hi, > > On Thu, Apr 13, 2017 at 06:25:22PM +0200, Ronny Pfannschmidt wrote: > > since quite a while now we keep a lot of code away from users by leaving > > it in the features branch, > > more recent detail https://github.com/pytest-dev/pyte

Re: [pytest-dev] [proposal] abolishing the features branch

2017-04-19 Thread Bruno Oliveira
On Mon, Apr 17, 2017 at 3:49 PM Ronny Pfannschmidt < opensou...@ronnypfannschmidt.de> wrote: > > On 14.04.2017 14:17, Florian Bruhin wrote: > > On Thu, Apr 13, 2017 at 05:51:34PM +0000, Bruno Oliveira wrote: > >> What if we instead of considering features, we rel

Re: [pytest-dev] Help available

2017-04-25 Thread Bruno Oliveira
Hi Robert, On Tue, Apr 25, 2017 at 5:03 AM Robert Kuska wrote: > my employer (kiwi.com) decided to hire a bunch of interns to work on > open source projects we actively use in our company. Each intern has its > own mentor and each mentor picks his open source projects he wants to > overlook. > >

Re: [pytest-dev] [3.1 feature] "assert not raise exception" helper: opinions about the name

2017-04-25 Thread Bruno Oliveira
Hi guys, On Fri, Apr 7, 2017 at 4:31 PM Bruno Oliveira wrote: > > On Thu, Apr 6, 2017 at 3:30 AM holger krekel wrote: > >> >> I am fine to have user-tests guide the decision ... so now for me it's >> only between offering a context manager or offering a speci

Re: [pytest-dev] [3.1 feature] "assert not raise exception" helper: opinions about the name

2017-04-25 Thread Bruno Oliveira
On Tue, Apr 25, 2017 at 7:47 PM Brianna Laugher wrote: > If someone can make like a screenshot showing & labelling the various > options, I'll create a poll on the @pytestdotorg account. > Thanks Brianna! Anybody with some graphic skills is up for it? :) Cheers, ___

[pytest-dev] Remove AUTHORS file?

2017-05-04 Thread Bruno Oliveira
Hi everyone, I was wondering what people thought about removing the AUTHORS file from pytest and point to GH's Contributors link instead? https://github.com/pytest-dev/pytest/graphs/contributors This is automatically generated from the commits to the repository, so there's no maintenance involve

Re: [pytest-dev] [proposal] using towncrier for merge-friendly changelog management

2017-05-04 Thread Bruno Oliveira
For reference: https://github.com/pytest-dev/pytest/issues/2390 On Tue, Mar 28, 2017 at 3:45 AM Floris Bruynooghe wrote: > This gets a big +1 from me, it would be great to have this done more > easily. > > On 21 Mar 2017 8:54 a.m., "Ronny Pfannschmidt" < > opensou...@ronnypfannschmidt.de> wrote:

Re: [pytest-dev] Remove AUTHORS file?

2017-05-04 Thread Bruno Oliveira
On Thu, May 4, 2017 at 11:07 AM Floris Bruynooghe wrote: > What's nice is that AUTHORS is just an alphabetical list of people while > the github page ranks people implicitly by some random metric. It's > also possible for packagers to install this file, currently Debian does > that for CPython's

Re: [pytest-dev] Remove AUTHORS file?

2017-05-04 Thread Bruno Oliveira
On Thu, May 4, 2017 at 2:42 PM Florian Bruhin wrote: > On Thu, May 04, 2017 at 02:24:36PM +0000, Bruno Oliveira wrote: > > In light of that, I propose to change it so it is generated automatically > > from git, would that be acceptable? > > FWIW here's what I do

Re: [pytest-dev] Remove AUTHORS file?

2017-05-10 Thread Bruno Oliveira
Hi everyone, On Thu, May 4, 2017 at 2:47 PM Bruno Oliveira wrote: > On Thu, May 4, 2017 at 2:42 PM Florian Bruhin wrote: > >> On Thu, May 04, 2017 at 02:24:36PM +, Bruno Oliveira wrote: >> > In light of that, I propose to change it so it is generated >> automat

Re: [pytest-dev] moving execnet over to gh under pytest-dev

2017-05-16 Thread Bruno Oliveira
On Tue, May 16, 2017 at 10:56 AM Ronny Pfannschmidt < opensou...@ronnypfannschmidt.de> wrote: > Hi, > > i'd like to move execnet under pytest-dev on github, > > +1, definitely. Thanks Ronny! []s, ___ pytest-dev mailing list pytest-dev@python.org https:/

Re: [pytest-dev] the potential need to release 4.0 instead of 3.1, proposal

2017-05-16 Thread Bruno Oliveira
Hi everyone, On Fri, May 12, 2017 at 7:03 PM Ronny Pfannschmidt < opensou...@ronnypfannschmidt.de> wrote: > with the recent discovery of > https://github.com/pytest-dev/pytest/issues/2398 which was a result of > accidentally introducing object as base class in pytest-2.9.1 via > https://github.co

Re: [pytest-dev] the potential need to release 4.0 instead of 3.1, proposal

2017-05-17 Thread Bruno Oliveira
On Tue, May 16, 2017 at 4:31 PM Brian Okken wrote: > I don't get the "broke the API" part of this issue. > What used to work and doesn't now? > We changed all classes to new-style classes in order to remove the subtle differences between old style and new style, which may affect Python 2 users.

Re: [pytest-dev] the potential need to release 4.0 instead of 3.1, proposal

2017-05-17 Thread Bruno Oliveira
On Wed, May 17, 2017 at 2:18 PM Floris Bruynooghe wrote: > We have a deprecation cycle so we can't just break the API and bump to > 4.0 as I understand it. So we accidentally broke the API, that sucks > but generally I don't think we can fix that anymore That's true, we won't help anybody by b

Re: [pytest-dev] the potential need to release 4.0 instead of 3.1, proposal

2017-05-18 Thread Bruno Oliveira
On Thu, May 18, 2017 at 1:13 AM Ronny Pfannschmidt wrote: > I'd prefer if we do not undo the change. > Do you mean the change to the TerminalRepr in 3.0.5, or the complete PR which changes all classes to new style classes? Bruno ___ pytest-dev mailing

Re: [pytest-dev] the potential need to release 4.0 instead of 3.1, proposal

2017-05-18 Thread Bruno Oliveira
On Thu, May 18, 2017 at 9:47 AM Ronny Pfannschmidt wrote: > that pr that changes all classes, i'd like to keep it, just communicate > the changes correctly > Floris, Florian, Holger, are you guys OK with that? I'm fine either way. Bruno ___ pytest-dev

Re: [pytest-dev] the potential need to release 4.0 instead of 3.1, proposal

2017-05-18 Thread Bruno Oliveira
On Thu, May 18, 2017 at 2:25 PM Floris Bruynooghe wrote: > > My main objection was purely on the fact that we basically disobey the > deprecation policy right after introducing it by doing this. Hmm you are right, I think this is the central point: introducing this change is known to possibly b

[pytest-dev] pytest 3.1.0 has been released!

2017-05-22 Thread Bruno Oliveira
* Bruno Oliveira * David Giese * David Szotten * Dmitri Pribysh * Florian Bruhin * Florian Schulze * Floris Bruynooghe * John Towler * Jonas Obrist * Katerina Koukiou * Kodi Arfer * Krzysztof Szularz * Lev Maximov * Loïc Estève * Luke Murphy * Manuel Krebber * Matthew Duck * Matthias Bussonnier

Re: [pytest-dev] [proposal] abolishing the features branch

2017-05-23 Thread Bruno Oliveira
On Tue, May 23, 2017 at 1:18 PM RonnyPfannschmidt < opensou...@ronnypfannschmidt.de> wrote: > https://github.com/pytest-dev/pytest/issues/2430 is a perfect example of > why we need *more* and *faster* feedback > > we keep doing things like that and i think we should reexamine on how we > want to h

[pytest-dev] pytest 3.1 warning capture woes

2017-05-25 Thread Bruno Oliveira
Hi everyone, Unfortunately pytest's 3.1 warning capture being active by default has caused grief on some test suites and there's been a lengthy discussion about it on this thread: https://github.com/pytest-dev/pytest/issues/2430 I'm pointing this out here so others can join the discussion and sh

Re: [pytest-dev] pytest 3.1 warning capture woes

2017-05-29 Thread Bruno Oliveira
Hi Floris and Brian, thanks for joining. On Mon, May 29, 2017 at 8:44 AM Floris Bruynooghe wrote: > Hi, > > On 26 May 2017 at 15:51, Brian Okken wrote: > > My opinion: > > - make 3.1.1 with this feature opt in > > I'd have agreed with this initially. But I think releasing an > un-broken versio

Re: [pytest-dev] pytest 3.1 warning capture woes

2017-05-29 Thread Bruno Oliveira
ine to mark 3.1 as botched > > we should have a proper discussion about feature lifetimes in future, > just deprecation is simply not enough - and it seems we repeat mishaps > around releasing "complete" features > -- Ronny > > Am 29.05.2017 um 14:06 schrieb Bruno Oliv

Re: [pytest-dev] pytest 3.1 warning capture woes

2017-05-29 Thread Bruno Oliveira
need to install a custom filter but we are not sure which filter to install at the moment. Thoughts? Bruno. On Mon, May 29, 2017 at 9:20 AM Bruno Oliveira wrote: > Thanks everyone. > > If it is alright then, I will prepare a 3.2.0 release later today. > > Cheers, > Bruno.

Re: [pytest-dev] pytest 3.1 warning capture woes

2017-05-30 Thread Bruno Oliveira
On Tue, May 30, 2017 at 6:41 AM RonnyPfannschmidt < opensou...@ronnypfannschmidt.de> wrote: > > > I'd still be in favour of turning them on by default, if that's possible > > without clashing with existing filters. I don't think it's the job of > > libraries to modify warning filters - they alread

[pytest-dev] pytest 3.1.1 released!

2017-05-31 Thread Bruno Oliveira
: * Bruno Oliveira * Florian Bruhin * Floris Bruynooghe * Jason R. Coombs * Ronny Pfannschmidt * wanghui Happy testing, The pytest Development Team ___ pytest-dev mailing list pytest-dev@python.org https://mail.python.org/mailman/listinfo/pytest-dev

[pytest-dev] pytest.org redirect request (#2453)

2017-05-31 Thread Bruno Oliveira
Hi everyone, An issue has been raised in the bug tracker asking to redirect docs.pytest.org/latest/* to docs.pytest.org/en/latest/*: https://github.com/pytest-dev/pytest/issues/2453 Whoever has powers to that change the redirect rules could take a look please? Thanks! Cheers, Bruno. ___

[pytest-dev] pytest 3.1.2

2017-06-09 Thread Bruno Oliveira
: * Andreas Pelme * ApaDoctor * Bruno Oliveira * Florian Bruhin * Ronny Pfannschmidt * Segev Finer Happy testing, The pytest Development Team ___ pytest-dev mailing list pytest-dev@python.org https://mail.python.org/mailman/listinfo/pytest-dev

Re: [pytest-dev] want to work in #2206

2017-06-20 Thread Bruno Oliveira
Hi Rajib, Sure, thanks for your interest in tackling this! Ronny asked to be contacted about this in #2206; since he is the OP of that issue I suspect he has some general idea of which areas to focus on. Cheers, Bruno. On Tue, Jun 20, 2017 at 7:16 AM Rajib Mitra wrote: > Dear Members, > > I w

Re: [pytest-dev] [proposal] introducing attrs to the codebase

2017-06-23 Thread Bruno Oliveira
have an > idea on whether they've stabilised by now or the changes are not so bad? > > > As an aside, if we're happy to introduce more libraries then maybe we > should also consider the standard six package instead of doing our own > stuff, mostly because I'd mak

Re: [pytest-dev] deprecating/removing py.path.local.write due to https://github.com/pytest-dev/py/issues/107

2017-06-24 Thread Bruno Oliveira
Hi Ronny, Not sure about removing as it will break things that are working even if by accident. I don't see any problem about deprecating it and warning about not using it in new code. Cheers On Sat, Jun 24, 2017 at 10:39 AM RonnyPfannschmidt < opensou...@ronnypfannschmidt.de> wrote: > Hi every

Re: [pytest-dev] deprecating/removing py.path.local.write due to https://github.com/pytest-dev/py/issues/107

2017-06-24 Thread Bruno Oliveira
On Sat, Jun 24, 2017 at 2:31 PM holger krekel wrote: > ... maybe simply documenting the new methods (write_bytes/write_text i > guess) > and not mentioning the old methods anymore but not removing/changing them. > That has happened several times and i think it's a good approach. > I agree, but i

Re: [pytest-dev] removing py.path.svn* - since its unmaintained and broken since years

2017-06-24 Thread Bruno Oliveira
Is it giving maintenance problems? On Sat, Jun 24, 2017 at 3:26 PM RonnyPfannschmidt < opensou...@ronnypfannschmidt.de> wrote: > hi all, > > i'd like to remove that code - its broken since years and im not aware > of anyone wanting to fix/maintain it > as it is now a deadweight i'd like to see it

Re: [pytest-dev] removing py.path.svn* - since its unmaintained and broken since years

2017-06-24 Thread Bruno Oliveira
35 PM RonnyPfannschmidt < opensou...@ronnypfannschmidt.de> wrote: > its dead code nobody wants to fix, as such its about the same as a > unpaid debt incurring interests > > Am 24.06.2017 um 20:27 schrieb Bruno Oliveira: > > Is it giving maintenance problems? > >

Re: [pytest-dev] removing py.path.svn* - since its unmaintained and broken since years

2017-06-24 Thread Bruno Oliveira
#x27;s why i'd like to remove it > > Am 24.06.2017 um 21:38 schrieb Bruno Oliveira: > > Giving that, we could just announce that it is unsupported, leave all > > tests out (or mark them as xfail). > > > > I agree that there's no point having it around if it is

[pytest-dev] Pytest 3.1.3

2017-07-04 Thread Bruno Oliveira
them: * Antoine Legrand * Bruno Oliveira * Max Moroz * Raphael Pierzina * Ronny Pfannschmidt * Ryan Fitzpatrick Happy testing, The pytest Development Team ___ pytest-dev mailing list pytest-dev@python.org https://mail.python.org/mailman/listinfo/pytest

[pytest-dev] Deprecation Roadmap Wiki

2017-07-10 Thread Bruno Oliveira
Hi everyone, I just created a page to track deprecations in our wiki: https://github.com/pytest-dev/pytest/wiki/Deprecation-Roadmap The idea is to make it clear for ourselves when we intend to remove certain features. Cheers, Bruno. ___ pytest-dev mai

Re: [pytest-dev] Deprecation Roadmap Wiki

2017-07-10 Thread Bruno Oliveira
Hey Tyler, Hmmm my initial gut feeling is to keep them separate. Also I'm not sure if it makes sense for pluggy given that it is not even in 1.0 yet. What do others think? Cheers, Bruno. On Mon, Jul 10, 2017 at 12:34 PM Tyler Goodlet wrote: > Hey Bruno, > > Is it ok if I stick on stuff from p

Re: [pytest-dev] Deprecation Roadmap Wiki

2017-07-12 Thread Bruno Oliveira
us to cancel bad > things instead of keeping them "forever" > > -- Ronny > > Am 10.07.2017 um 18:30 schrieb Bruno Oliveira: > > Hey Tyler, > > Hmmm my initial gut feeling is to keep them separate. > > Also I'm not sure if it makes sense for pluggy given that i

[pytest-dev] Help testing 3.2.0 release

2017-07-13 Thread Bruno Oliveira
Hi everyone, I have prepared a package for the 3.2.0 release and it would be great if people could help test it. The package is available at: https://devpi.net/nicoddemus/dev/pytest/3.2.0 And can be installed with: pip install -U https://devpi.net/nicoddemus/dev/+f/aeb/edee851da9e58/py

Re: [pytest-dev] Help testing 3.2.0 release

2017-07-13 Thread Bruno Oliveira
On Thu, Jul 13, 2017 at 7:45 PM Bruno Oliveira wrote: > I have prepared a package for the 3.2.0 release and it would be great if > people could help test it. > To take a look at the changes, please take a look at the CHANGELOG on the release branch: https://github.com/nicoddemus/py

Re: [pytest-dev] Help testing 3.2.0 release

2017-07-14 Thread Bruno Oliveira
; often enough. > > Regards, > Florian Schulze > > On 14 Jul 2017, at 0:45, Bruno Oliveira wrote: > > Hi everyone, > > I have prepared a package for the 3.2.0 release and it would be great if > people could help test it. > > The package is available at: > > h

Re: [pytest-dev] Help testing 3.2.0 release

2017-07-14 Thread Bruno Oliveira
On Fri, Jul 14, 2017 at 10:02 AM Florian Schulze wrote: > On 14 Jul 2017, at 14:04, Bruno Oliveira wrote: > > > But the __multicall__ warning was not added to 3.2, it has been in > > place > > since 2015. Are you seeing this warning just now? > > I saw more warn

Re: [pytest-dev] Help testing 3.2.0 release

2017-07-14 Thread Bruno Oliveira
On Fri, Jul 14, 2017 at 10:34 AM Oliver Bestwalter wrote: > Hi Bruno, > > I tried to install it into an existing Python 3.6 virtualenv and it > stumbled over setuptools - running it again in the same env worked then. I > pasted the call and a pip freeze here in case it is of interest: > https://p

Re: [pytest-dev] How to deal with setup.py/setup.cfg ?

2017-07-19 Thread Bruno Oliveira
Hi Bastien, I suggest to try to use the `testpaths`[1] option instead, which is tailored for just that purpose. Cheers, Bruno [1] https://docs.pytest.org/en/latest/customize.html?highlight=testpath#confval-testpaths On Wed, Jul 19, 2017 at 11:02 AM Bastien Sevajol wrote: > Hello, > > I use in

Re: [pytest-dev] execnet github import almost complete - please help and take a look

2017-07-21 Thread Bruno Oliveira
Hi Ronny, Nice, thanks for doing this! Looks fine, except that I see 24 open issues in GH, and only 21 open issues in Bitbucket, although both contain 56 issues in all. Other than that looks crispy. Cheers, Bruno On Fri, Jul 21, 2017 at 8:35 AM RonnyPfannschmidt < opensou...@ronnypfannschmidt.

Re: [pytest-dev] xdist: removing boxed with degraded backward compat

2017-07-28 Thread Bruno Oliveira
Hey Ronny, Does this new "pytest-boxed"(?) plugin depends on pytest-xdist? If it does I think it is just a matter of pinning that dependency as requiring a minimum of pytest-xdist >= 2 so users will get a version conflict error if they try to install incompatible versions (I'm assuming the pytest-

Re: [pytest-dev] xdist: removing boxed with degraded backward compat

2017-07-28 Thread Bruno Oliveira
> > Am 28.07.2017 um 17:59 schrieb Bruno Oliveira: > > Hey Ronny, > > > > Does this new "pytest-boxed"(?) plugin depends on pytest-xdist? If it > > does I think it is just a matter of pinning that dependency as requiring > > a minimum of pytest-xdist &

[pytest-dev] Help testing 3.2.0 release (part 2)

2017-07-31 Thread Bruno Oliveira
Hi everyone, I have prepared another package for the 3.2.0 release and again it would be great if people could help test it. The package is available at: https://devpi.net/nicoddemus/dev/pytest/3.2.0 And can be installed with: pip install -U https://devpi.net/nicoddemus/dev/+f/aeb/edee

Re: [pytest-dev] Help testing 3.2.0 release (part 2)

2017-07-31 Thread Bruno Oliveira
On Mon, Jul 31, 2017 at 8:44 AM Florian Bruhin wrote: > Thanks! Seems to work fine with qutebrowser this time :) > Glad to know, thanks! > > > The package is available at: > > > > https://devpi.net/nicoddemus/dev/pytest/3.2.0 > > > > And can be installed with: > > > > pip install -U > >

Re: [pytest-dev] Help testing 3.2.0 release (part 2)

2017-07-31 Thread Bruno Oliveira
On Mon, Jul 31, 2017 at 10:40 AM Florian Schulze wrote: > > I had to do: > > > > pip install --no-cache-dir -U > > > https://devpi.net/nicoddemus/dev/+f/e50/b5a054e0007ca/pytest-3.2.0-py2.py3-none-any.whl > > This works with devpi tests as well. > Thanks Florian! Cheers, Bruno _

[pytest-dev] pytest 3.2.0 released

2017-08-01 Thread Bruno Oliveira
* Bruno Oliveira * Daniel Hahler * Florian Bruhin * Floris Bruynooghe * John Still * Jordan Moldow * Kale Kundert * Lawrence Mitchell * Llandy Riveron Del Risco * Maik Figura * Martin Altmayer * Mihai Capotă * Nathaniel Waisbrot * Nguyễn Hồng Quân * Pauli Virtanen * Raphael Pierzina * Ronny

Re: [pytest-dev] Documentation proposal

2017-08-07 Thread Bruno Oliveira
Hi Daniele, Thanks a lot for following up on this! I've pushed your branch up to pytest's repository and enabled building it on RTD so people can more easily take a look at it: https://docs.pytest.org/en/documentation-restructure/ I did a quick glance and I like what I see so far. Having separa

[pytest-dev] pytest 3.2.1 released

2017-08-09 Thread Bruno Oliveira
Gaynor * Bruno Oliveira * Florian Bruhin * Ronny Pfannschmidt * Srinivas Reddy Thatiparthy Happy testing, The pytest Development Team ___ pytest-dev mailing list pytest-dev@python.org https://mail.python.org/mailman/listinfo/pytest-dev

Re: [pytest-dev] Documentation proposal

2017-08-11 Thread Bruno Oliveira
ing pytest-bdd/splinter/Xvfb > on Windows and OSX), but I am still in recovery mode from the conference > itself so it will take me a little longer to write that up. > > cheers > Brianna > > > On 8 August 2017 at 02:07, Bruno Oliveira wrote: > >> Hi Daniele, >>

Re: [pytest-dev] hangout for mark api brainstorming - canceling alltogether

2017-08-24 Thread Bruno Oliveira
OK Ronny, thanks! On Thu, Aug 24, 2017 at 2:55 PM RonnyPfannschmidt < opensou...@ronnypfannschmidt.de> wrote: > Hi everyone, > > for family reasons (a baby is always up for surprises) > i cant really make it to a call anyway > > i will start creating smaller focussed discussions on the ml instead

Re: [pytest-dev] [proposal] deprecate magic constant scopes in favour of the node types

2017-08-29 Thread Bruno Oliveira
Hi Ronny, On Tue, Aug 29, 2017 at 4:48 AM RonnyPfannschmidt < opensou...@ronnypfannschmidt.de> wrote: > Hi all, > > since quite a while now we have used magic constants for scope names, > while we have something perfectly fitting already at hand - namely the > Node classes we actually use and mea

Re: [pytest-dev] marks - proposals for a new api and a path forward

2017-08-29 Thread Bruno Oliveira
Hi guys, Sorry for not answering earlier. On Sun, Aug 27, 2017 at 4:04 AM Ronny Pfannschmidt < opensou...@ronnypfannschmidt.de> wrote: > Hi Brian, > > good call, i should extend this writing to it makes sens > > > what i imagine is an api like this: > > node.find_marks() -> iterates over all mar

Re: [pytest-dev] marks - proposals for a new api and a path forward

2017-08-29 Thread Bruno Oliveira
On Tue, Aug 29, 2017 at 4:53 PM Floris Bruynooghe wrote: > Hello, > > RonnyPfannschmidt writes: > > Am 29.08.2017 um 15:18 schrieb Bruno Oliveira: > >> On Sun, Aug 27, 2017 at 4:04 AM Ronny Pfannschmidt > >> >> <mailto:opensou...@ronnypfannschmidt.de&

[pytest-dev] pytest 3.2.2 released

2017-09-07 Thread Bruno Oliveira
them: * Andreas Pelme * Antonio Hidalgo * Bruno Oliveira * Felipe Dau * Fernando Macedo * Jesús Espino * Joan Massich * Joe Talbott * Kirill Pinchuk * Ronny Pfannschmidt * Xuan Luong Happy testing, The pytest Development Team ___ pytest-dev mailing

[pytest-dev] Pytest 3.2.3 released

2017-10-04 Thread Bruno Oliveira
, among them: * Bruno Oliveira * Evan * Joe Hamman * Oliver Bestwalter * Ronny Pfannschmidt * Xuan Luong Happy testing, The pytest Development Team ___ pytest-dev mailing list pytest-dev@python.org https://mail.python.org/mailman/listinfo/pytest-dev

Re: [pytest-dev] deprecating `pytest_plugins` in non-initial conftests to prevent unintended smear/spill of plugin configurations

2017-10-25 Thread Bruno Oliveira
On Wed, Oct 25, 2017 at 6:01 PM Floris Bruynooghe wrote: > > as such i propose deprecating them and warning users about the problems > > with regard to when and how to warn we need to take a look in detail as > > there are many reasonably valid setups with exactly one non initial > conftest > > a

Re: [pytest-dev] proposal - type-keyed storage for extension objects/metadata in config/items

2017-10-27 Thread Bruno Oliveira
Hi Ronny, Can you provide a use case for this storage? Perhaps we can use existing cases and see how they would like with the new API. For example, pytest-html currently attaches an "extra" dictionary to items. How could pytest-html make use of the new API? Another example is the core junitxml p

[pytest-dev] pytest 3.2.4 released!

2017-11-14 Thread Bruno Oliveira
: * Bruno Oliveira * Christian Boelsen * Christoph Buchner * Daw-Ran Liou * Florian Bruhin * Franck Michea * Leonard Lausen * Matty G * Owen Tuz * Pavel Karateev * Pierre GIRAUD * Ronny Pfannschmidt * Stephen Finucane * Sviatoslav Abakumov * Thomas Hisch * Tom Dalton * Xuan Luong * Yorgos Pagles * Семён

[pytest-dev] pytest 3.2.5 hot-fix released

2017-11-15 Thread Bruno Oliveira
pytest 3.2.5 has just been released to PyPI. This is a hot-fix release: pytest-3.2.4 imposed a restriction of "py<1.5" because py-1.5.0 has dropped py26 and py33 support, but this can cause problems on some installations due to pip's dependency resolver. For more details see this issue: https://g

[pytest-dev] pytest 3.3.0

2017-11-27 Thread Bruno Oliveira
at the CHANGELOG: http://doc.pytest.org/en/latest/changelog.html For complete documentation, please visit: http://docs.pytest.org As usual, you can upgrade from pypi via: pip install -U pytest Thanks to all who contributed to this release, among them: * Anthony Sottile * Bruno

[pytest-dev] Blog down?

2017-11-29 Thread Bruno Oliveira
Hi everyone, Just realized that the blog seems to be down (http://blog.pytest.org/). Who can verify what's happening? Cheers, Bruno. ___ pytest-dev mailing list pytest-dev@python.org https://mail.python.org/mailman/listinfo/pytest-dev

Re: [pytest-dev] Blog down?

2017-11-29 Thread Bruno Oliveira
Thanks Florian! The site is back up, but the layout looks incorrect to me (seems it's rendering without CSS). Anybody else seeing this? Cheers, On Wed, Nov 29, 2017 at 5:34 PM Floris Bruynooghe wrote: > "Florian Schulze" writes: > > > The missing trailing dot in the CNAME was the issue, shoul

Re: [pytest-dev] Blog down?

2017-11-29 Thread Bruno Oliveira
mit a PR. > > You should also see this when locally testing via > > make clean && make html && make serve > > > Best, > > Maik. > > On 29.11.2017 20:38, Bruno Oliveira wrote: > > Thanks Florian! > > The site is back up, but the layout looks

Re: [pytest-dev] Proposal: Move davehunt/pytest-metadata to pytest-dev/metadata

2017-11-30 Thread Bruno Oliveira
On Thu, Nov 30, 2017 at 2:16 PM Dave Hunt wrote: > I’d like to propose moving the pytest-metadata plugin to pytest-dev. > Definitely +1! Cheers, Bruno. It’s a dependency for pytest-html, which is already in the pytest-dev > organisation, so I believe this makes sense. I would still be the > ow

Re: [pytest-dev] Proposal: Move davehunt/pytest-metadata to pytest-dev/metadata

2017-12-01 Thread Bruno Oliveira
Great, thanks everyone! Dave, feel free to transfer to me when you have the chance and I will follow with the procedure. :) On Fri, Dec 1, 2017 at 2:32 PM Florian Bruhin wrote: > On Fri, Dec 01, 2017 at 10:06:51AM -0300, Ana Ribeiro wrote: > > I don't know if my +1 means anything since I am not

Re: [pytest-dev] Proposal: Move davehunt/pytest-metadata to pytest-dev/metadata

2017-12-04 Thread Bruno Oliveira
Dave, All done, let me know if anything is amiss! Cheers On Mon, Dec 4, 2017 at 7:44 AM Dave Hunt wrote: > Thanks everyone! Bruno, I’ve initiated the transfer. > > Dave > > > On 1 Dec 2017, at 18:11, Bruno Oliveira wrote: > > Great, thanks everyone! > > Dave, fe

Re: [pytest-dev] Question about fixtures and the use of finalizers vs yield

2017-12-04 Thread Bruno Oliveira
Hi Keith, Both approaches are valid and identical; I personally prefer using yield because to me it feels more natural. Cheers, On Mon, Dec 4, 2017 at 9:49 AM Dr Keith M Franklin wrote: > > Good morning/afternoon, > > I hope this is the right place to post this. I’ve been using PyTest for a >

[pytest-dev] pytest 3.3.1 released!

2017-12-05 Thread Bruno Oliveira
them: * Bruno Oliveira * Daniel Hahler * Eugene Prikazchikov * Florian Bruhin * Roland Puntaier * Ronny Pfannschmidt * Sebastian Rahlf * Tom Viner Happy testing, The pytest Development Team ___ pytest-dev mailing list pytest-dev@python.org https

Re: [pytest-dev] [proposal] experiment with adapting gitmate.io for automating issue maintenance/triaging tasks

2017-12-08 Thread Bruno Oliveira
Howdy Ronny, On Fri, Dec 8, 2017 at 2:36 PM Ronny Pfannschmidt < opensou...@ronnypfannschmidt.de> wrote: > Hi Everyone, > > a while back the people behind gitmate.io did interview me to expand > their perspective with focus on how pytest does things as well as how i > do certain things at work, >

Re: [pytest-dev] [proposal] experiment with adapting gitmate.io for automating issue maintenance/triaging tasks

2017-12-08 Thread Bruno Oliveira
Sounds good, thanks. On Fri, Dec 8, 2017 at 5:52 PM Ronny Pfannschmidt < opensou...@ronnypfannschmidt.de> wrote: > i propose that unless someone vetos, i'll take a look into activating it > for pytest-dev/pytest on monday. > > -- Ronny > > Am Freitag, den 08.12.20

Re: [pytest-dev] Proposal: Move adamchainz/pytest-randomly to pytest-dev/pytest-randomly

2017-12-16 Thread Bruno Oliveira
+1 here too! :) Adam, please transfer the repository to me and I will complete the transfer! []s, On Sat, Dec 16, 2017 at 8:55 AM Florian Bruhin wrote: > Hey, > > (Yay, someone else with a me@ address!) > > On Sat, Dec 16, 2017 at 05:56:18AM +, Adam Johnson wrote: > > As Bruno suggested to

Re: [pytest-dev] Proposal: Move adamchainz/pytest-randomly to pytest-dev/pytest-randomly

2017-12-16 Thread Bruno Oliveira
I think the transfer is complete now! Adam, please reach out if something is still amiss! :) Cheers, On Sat, Dec 16, 2017 at 7:59 PM Adam Johnson wrote: > Transfer requested to nicoddemus ! > > On 16 December 2017 at 14:29, Bruno Oliveira wrote: > >> +1 here too! :)

[pytest-dev] pytest 3.3.2

2018-01-04 Thread Bruno Oliveira
: * Anthony Sottile * Antony Lee * Austin * Bruno Oliveira * Florian Bruhin * Floris Bruynooghe * Henk-Jaap Wagenaar * Jurko Gospodnetić * Ronny Pfannschmidt * Srinivas Reddy Thatiparthy * Thomas Hisch Happy testing, The pytest Development Team ___ pytest-dev

[pytest-dev] Proposal: use milestones again for features/deprecations/removals

2018-01-04 Thread Bruno Oliveira
Hi, We used milestones in the past to track what would go in each release, including bugs and new features, but we have not been using them anymore and I think the reason is because we never usually kept that promise: if we deemed a release should happen soon we just moved all issues forward or re

Re: [pytest-dev] Parametrizing dependent fixtures

2018-01-08 Thread Bruno Oliveira
Hi Edgar, On Mon, Jan 8, 2018 at 10:32 AM Edgar Ostrowski wrote: > Anyway I would like to confirm that this is valid way of using the > parametrize marker. > I did not look at the video yet, but fixture parametrization only works by using @pytest.fixture(params=...). Markers don't do anything w

Re: [pytest-dev] Custom test collection with fixtures

2018-01-15 Thread Bruno Oliveira
Hi Sterling, Looking at pytest’s code , it seems it also needs a fixtureinfo object: yield Function(name, parent=self, fixtureinfo=fixtureinfo) This feels a little more complicate than it should to me, but I guess that’s ho

[pytest-dev] codespeak.net down

2018-01-20 Thread Bruno Oliveira
Hi everyone, >From https://github.com/pytest-dev/pytest-xdist/issues/258, codespeak.net is down. Can anybody with access bring it back up? Alternatively we might consider moving its documentation to ReadTheDocs. Cheers, Bruno. ___ pytest-dev mailing li

Re: [pytest-dev] codespeak.net down

2018-01-21 Thread Bruno Oliveira
On Sun, Jan 21, 2018 at 3:58 AM holger krekel wrote: > Hi Bruno, > > On Sat, Jan 20, 2018 at 15:51 +0000, Bruno Oliveira wrote: > > Hi everyone, > > > > From https://github.com/pytest-dev/pytest-xdist/issues/258, > codespeak.net > > is down. Can

[pytest-dev] Alias to parametrize

2018-01-29 Thread Bruno Oliveira
Hi all, A PR[1] has been submitted which adds `parameterize` as an alias to `parametrize`. Florian Bruhin and I are not very keen to the idea given that there is an explicit warning for it already and having different names to the same thing reduces consistency across test suites. I'm sending an

<    1   2   3   4   5   6   7   >