maxtepkeev / architect

A set of tools which enhances ORMs written in Python with more features
Other
391 stars 57 forks source link

Improved build matrix. #5

Closed thedrow closed 9 years ago

thedrow commented 9 years ago

Cleaner versions syntax. Added Django 1.7 RTM. Added peewee 2.3.x and 2.4.x. Used travis_retry in order to avoid build failures due to network issues. Matrix should fast finish since it's quite large.

coveralls commented 9 years ago

Coverage Status

Coverage decreased (-1.01%) when pulling 32c5c023ddaed59d7d9d708d642b012235f2afbc on thedrow:patch-1 into 93c58c568d71ae14bd4fe9c7b1bfed2cbf4aaf70 on maxtepkeev:master.

coveralls commented 9 years ago

Coverage Status

Coverage decreased (-0.25%) when pulling 32c5c023ddaed59d7d9d708d642b012235f2afbc on thedrow:patch-1 into 93c58c568d71ae14bd4fe9c7b1bfed2cbf4aaf70 on maxtepkeev:master.

thedrow commented 9 years ago

Build is failing due to a bug in pony ORM 0.5.3 when using mysql.

thedrow commented 9 years ago

See upstream issue: https://github.com/ponyorm/pony/issues/87

coveralls commented 9 years ago

Coverage Status

Coverage remained the same when pulling 117ba6578f6d7d8d654753afadd682d055b38874 on thedrow:patch-1 into 93c58c568d71ae14bd4fe9c7b1bfed2cbf4aaf70 on maxtepkeev:master.

coveralls commented 9 years ago

Coverage Status

Coverage remained the same when pulling fe39d32e4b8d1a7aa731f9f244374695b31b25bb on thedrow:patch-1 into 93c58c568d71ae14bd4fe9c7b1bfed2cbf4aaf70 on maxtepkeev:master.

coveralls commented 9 years ago

Coverage Status

Coverage decreased (-14.86%) when pulling fe39d32e4b8d1a7aa731f9f244374695b31b25bb on thedrow:patch-1 into 93c58c568d71ae14bd4fe9c7b1bfed2cbf4aaf70 on maxtepkeev:master.

coveralls commented 9 years ago

Coverage Status

Coverage remained the same when pulling fe39d32e4b8d1a7aa731f9f244374695b31b25bb on thedrow:patch-1 into 93c58c568d71ae14bd4fe9c7b1bfed2cbf4aaf70 on maxtepkeev:master.

coveralls commented 9 years ago

Coverage Status

Coverage remained the same when pulling fe39d32e4b8d1a7aa731f9f244374695b31b25bb on thedrow:patch-1 into 93c58c568d71ae14bd4fe9c7b1bfed2cbf4aaf70 on maxtepkeev:master.

coveralls commented 9 years ago

Coverage Status

Coverage remained the same when pulling 083f739209d0361e892a0a18556b4961ed2eb7a5 on thedrow:patch-1 into 93c58c568d71ae14bd4fe9c7b1bfed2cbf4aaf70 on maxtepkeev:master.

maxtepkeev commented 9 years ago

Thanks.

I know that this project is a little bit outdated. But it's not abandoned and I'll return to it's development very soon.

thedrow commented 9 years ago

I believe this is PR is mergeable :)

maxtepkeev commented 9 years ago

Thanks!

But I returned previous version semantics because they were there for a reason, e.g. >=2.2.0,<2.3.0 will also install 2.3rc1, 2.3a, 2.3b etc which we don't want, while >=2.2,<2.2.99 don't.

thedrow commented 9 years ago

They will not install rc1 since --pre is not specified.

maxtepkeev commented 9 years ago

I missed that option somehow. Thanks. I returned everything back as you proposed ;-)