Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #31711 > unrolled thread
| Started by | Michele Simionato <michele.simionato@gmail.com> |
|---|---|
| First post | 2012-10-18 20:58 -0700 |
| Last post | 2012-10-19 09:17 +0000 |
| Articles | 5 — 4 participants |
Back to article view | Back to comp.lang.python
Testing against multiple versions of Python Michele Simionato <michele.simionato@gmail.com> - 2012-10-18 20:58 -0700
Re: Testing against multiple versions of Python andrea crotti <andrea.crotti.0@gmail.com> - 2012-10-19 09:47 +0100
Re: Testing against multiple versions of Python Boris FELD <lothiraldan@gmail.com> - 2012-10-19 10:50 +0200
Re: Testing against multiple versions of Python Michele Simionato <michele.simionato@gmail.com> - 2012-10-19 02:17 -0700
Re: Testing against multiple versions of Python Duncan Booth <duncan.booth@invalid.invalid> - 2012-10-19 09:17 +0000
| From | Michele Simionato <michele.simionato@gmail.com> |
|---|---|
| Date | 2012-10-18 20:58 -0700 |
| Subject | Testing against multiple versions of Python |
| Message-ID | <a9ec0dca-4ba8-4887-b65f-359898576795@googlegroups.com> |
Yesterday I released a new version of the decorator module. It should run under Python 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3. I did not have the will to install on my machine 8 different versions of Python, so I just tested it with Python 2.7 and 3.3. But I do not feel happy with that. Is there any kind of service where a package author can send a pre-release version of her package and have its tests run againsts a set of different Python versions?
I seem to remember somebody talking about a service like that years ago but I don't remembers. I do not see anything on PyPI. Any advice is welcome!
Michele Simionato
[toc] | [next] | [standalone]
| From | andrea crotti <andrea.crotti.0@gmail.com> |
|---|---|
| Date | 2012-10-19 09:47 +0100 |
| Message-ID | <mailman.2496.1350636449.27098.python-list@python.org> |
| In reply to | #31711 |
2012/10/19 Michele Simionato <michele.simionato@gmail.com>: > Yesterday I released a new version of the decorator module. It should run under Python 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3. I did not have the will to install on my machine 8 different versions of Python, so I just tested it with Python 2.7 and 3.3. But I do not feel happy with that. Is there any kind of service where a package author can send a pre-release version of her package and have its tests run againsts a set of different Python versions? > I seem to remember somebody talking about a service like that years ago but I don't remembers. I do not see anything on PyPI. Any advice is welcome! > > Michele Simionato > > > -- > http://mail.python.org/mailman/listinfo/python-list Travis on github maybe is what you want?
[toc] | [prev] | [next] | [standalone]
| From | Boris FELD <lothiraldan@gmail.com> |
|---|---|
| Date | 2012-10-19 10:50 +0200 |
| Message-ID | <mailman.2497.1350636623.27098.python-list@python.org> |
| In reply to | #31711 |
Did you take a look at https://www.shiningpanda-ci.com/? 2012/10/19 andrea crotti <andrea.crotti.0@gmail.com>: > 2012/10/19 Michele Simionato <michele.simionato@gmail.com>: >> Yesterday I released a new version of the decorator module. It should run under Python 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3. I did not have the will to install on my machine 8 different versions of Python, so I just tested it with Python 2.7 and 3.3. But I do not feel happy with that. Is there any kind of service where a package author can send a pre-release version of her package and have its tests run againsts a set of different Python versions? >> I seem to remember somebody talking about a service like that years ago but I don't remembers. I do not see anything on PyPI. Any advice is welcome! >> >> Michele Simionato >> >> >> -- >> http://mail.python.org/mailman/listinfo/python-list > > > Travis on github maybe is what you want? > -- > http://mail.python.org/mailman/listinfo/python-list
[toc] | [prev] | [next] | [standalone]
| From | Michele Simionato <michele.simionato@gmail.com> |
|---|---|
| Date | 2012-10-19 02:17 -0700 |
| Message-ID | <76c9fa99-b602-4e34-8426-5f811d1c6ee2@googlegroups.com> |
| In reply to | #31718 |
ShiningPanda looks really really cool. I need to investigate it.
[toc] | [prev] | [next] | [standalone]
| From | Duncan Booth <duncan.booth@invalid.invalid> |
|---|---|
| Date | 2012-10-19 09:17 +0000 |
| Message-ID | <XnsA0F1679ECADCAduncanbooth@127.0.0.1> |
| In reply to | #31711 |
Michele Simionato <michele.simionato@gmail.com> wrote: > Yesterday I released a new version of the decorator module. It should > run under Python 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3. I did not > have the will to install on my machine 8 different versions of Python, > so I just tested it with Python 2.7 and 3.3. But I do not feel happy > with that. Is there any kind of service where a package author can > send a pre-release version of her package and have its tests run > againsts a set of different Python versions? I seem to remember > somebody talking about a service like that years ago but I don't > remembers. I do not see anything on PyPI. Any advice is welcome! > Not exactly what you asked for, but if you clone https://github.com/collective/buildout.python then a single command will build Python 2.4, 2.5, 2.6, 2.7, 3.2, and 3.3 on your system. -- Duncan Booth http://kupuguy.blogspot.com
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web