From denis.bilenko at gmail.com Mon Dec 8 20:14:16 2008 From: denis.bilenko at gmail.com (Denis Bilenko) Date: Tue, 9 Dec 2008 01:14:16 +0600 Subject: [py-dev] greenlet on ARM/unix Message-ID: <95d6e98c0812081114s5152e2adi11fb21ce433f3a5@mail.gmail.com> Hi, First, thanks to the developers for a very nice library. It's a real pleasure to use. How much effort would it require to port py.magic.greenlet to ARM architecture? Maybe someone has thought about it and can provide some guidance. I'd like to do the porting myself but I have no idea how one should go about it, so any help is appreciated. Thanks, Denis. From phil at freehackers.org Fri Dec 12 18:20:50 2008 From: phil at freehackers.org (Philippe Fremy) Date: Fri, 12 Dec 2008 18:20:50 +0100 Subject: [py-dev] Avoiding directories when running py.test Message-ID: <49429D72.1040208@freehackers.org> Hi, I have a project where I am using py.test, that contains a copy of an external project. That external project has some test directories and files, which are not using py.test Is there a way I can tell py.test to avoid those directories ? cheers, Philippe From Jim.Vickroy at noaa.gov Fri Dec 12 20:21:23 2008 From: Jim.Vickroy at noaa.gov (Jim Vickroy) Date: Fri, 12 Dec 2008 12:21:23 -0700 Subject: [py-dev] Avoiding directories when running py.test In-Reply-To: <49429D72.1040208@freehackers.org> References: <49429D72.1040208@freehackers.org> Message-ID: <4942B9B3.7080005@noaa.gov> Philippe Fremy wrote: > Hi, > > I have a project where I am using py.test, that contains a copy of an > external project. > > That external project has some test directories and files, which are not > using py.test > > Is there a way I can tell py.test to avoid those directories ? > Does the information in sections 2.3 and 2.5 of the manual help? > cheers, > > Philippe > > _______________________________________________ > py-dev mailing list > py-dev at codespeak.net > http://codespeak.net/mailman/listinfo/py-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From fijall at gmail.com Fri Dec 12 21:18:46 2008 From: fijall at gmail.com (Maciej Fijalkowski) Date: Fri, 12 Dec 2008 21:18:46 +0100 Subject: [py-dev] Avoiding directories when running py.test In-Reply-To: <49429D72.1040208@freehackers.org> References: <49429D72.1040208@freehackers.org> Message-ID: <693bc9ab0812121218y41177052ja1e38c17906d81ee@mail.gmail.com> Put into this directory file named conftest.py which contains this: import py class Directory(py.test.collect.Directory): def run(self): return [] On Fri, Dec 12, 2008 at 6:20 PM, Philippe Fremy wrote: > > Hi, > > I have a project where I am using py.test, that contains a copy of an > external project. > > That external project has some test directories and files, which are not > using py.test > > Is there a way I can tell py.test to avoid those directories ? > > cheers, > > Philippe > > _______________________________________________ > py-dev mailing list > py-dev at codespeak.net > http://codespeak.net/mailman/listinfo/py-dev >