public-test 0.1.1

Creator: railscoder56

Last updated:

Add to Cart

Description:

publictest 0.1.1

Sample public project setup.

Usage
Add the package to your dependencies. If you’re working on a project managed by poetry, use the following:
$ poetry add public-test
If you’re working on a project managed by pipenv, use the following:
$ pipenv install public-test
After that, you should be able to import the library in your Python code:
from public_test import answer
print(answer)


Development
This library itself is managed by poetry. Read the docs for basic usage. You can run tests like this:
$ poetry run pytest
To release a new version of the library, follow these steps:

Be sure to be on the master Git branch.
Decide whether your changes are breaking, improvement, or a bug fix. Use the poetry’s version command to raise the version number.
Read the new number from the poetry’s output and commit the change with git commit -am "release vX.Y.Z".
Tag the commit with git tag vX.Y.Z
Release a new version by pushing it all to GitHub: git push origin master --tags

The CI automatically builds the package and publishes it to the PyPI. New releases get listed at tags. If you like your colleagues, for each release click on Edit tag and write a title and description (changelog).


Automatic Releases
For the CI to be able to publish new releases to PyPI, a PYPI_TOKEN environment variable first needs to be set in the CircleCI project settings:

Read the docs about PyPI tokens and CircleCI project environment variables.
Generate a token at your PyPI account settings. Copy the token and treat it as a secret.
Go to CircleCI project settings, section Environment Variables, and add a new one called PYPI_TOKEN. Paste the token as a value.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.