-
-
Notifications
You must be signed in to change notification settings - Fork 526
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More Travis-CI Testing #759
Conversation
See jrnl-org#739 (Python 3.8), jrnl-org#619 (Windows)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great! I actually got up early this morning to do this exact thing, only to find you had already done most of it.
Thank you!
Glad to help! |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
This is to expand the Travis testing. Specifically, it adds:
jrnl
. It also has the bonus of helping the Python core devs by exposing the cutting edge Python code to lots of real life Python code.poetry
tries to installcryptography
as a locally-built wheel (rather than a wheel downloaded from PyPI), which fails. This test currently times out after 10 minutes, as one of thebehave
steps is to open the editor and get text, and I think it is really opening the editor, rather than pretending to. This is odd, because it doesn't do this on my local machine.... c.f. Windows Support #619I haven't implemented it here, but the format of Travis should make it simple to add stages to the testing sequence, for example to run all the code through
black
or check that the dependencies have all been updated.Checklist