-
Notifications
You must be signed in to change notification settings - Fork 20
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
Integrate travis #9
Comments
It would be good to have some requirements here:
What do you think? |
"configuration is created" should be: The
Will have to see about when to run tests. I don't believe in automatic publishing, packaging maybe, but not publishing, so I can test the package locally and if there's an oversight can either move tags, or bump again. Otherwise, yes. |
You can have different build stages to differentiate between environments: https://docs.travis-ci.com/user/build-stages/
It just gives you advantages if you have good tests in place. The pipeline could run a diff on the version in the If you need to test it locally to find issues, you are not fighting the root problem here which is missing tests then. |
You're assuming the reason to reroll a release are based on code. I'm not. If I can clean up human language, add emphasis to certain passages or highlight new features in release notes, I see it as improvement of that release. And if you keep that "for next time", you know it's not going to happen. |
If you follow semantic versioning, which you should, it is. Every bugfix is an increase in the patch version, every non-breaking feature is a minor version upgrade, every breaking change is a major version. Combining this with git tagging gives you the opportunity to easily version your package and make it available really easy. Also see how easy it is: https://circleci.com/blog/continuously-deploying-python-packages-to-pypi-with-circleci/ (using circle ci but should be similar to travis). Really, if people do not push for semver and automatic releases then humans will make mistakes, which is granted. In the Node.js community this is a bigger problem because you rely more on external packages and solutions got created like https://github.com/semantic-release/semantic-release#readme to actually release code automatically. If you have some time lookup the resources here https://semantic-release.gitbook.io/semantic-release/support/resources and then you might understand why this topic should be important. |
Please don't assume lack of knowledge on my part, just because you don't agree with a well-informed choice. |
Now that we have tests via tox, we can integrate Travis
The text was updated successfully, but these errors were encountered: