Click here to deploy latest version on master
to production.
pip install gencove
Main documentation can be found here: https://docs.gencove.com
Have some form of virtualization, for instance pyenv for 3.11.x and a virtualenv.
Install in editing mode:
pip install -e .
Install local requirements:
pip install -r requirements.txt
Install pre-commit hooks:
pre-commit install
Use with local api service (need to have back_api2 running)
gencove <command> --host http://localhost:8200
or use with development version of deployed API service
gencove <command> --host https://api-dev.gencove-dev.com
Before pushing run:
pre-commit run
and then:
tox
This will run tests, black formatter and linters.
To run only a specific job from tox (i.e. only the tests for python 3.9 using API key):
tox -e py39-api_key
If you invoke tox like this:
tox -e py39-api_key -- gencove/tests/test_utils.py
or
tox -e py39-api_key -- gencove/tests/test_utils.py::test_is_valid_uuid__is_not_valid__text
the arguments after the -- will be substituted everywhere where you specify {posargs} in your test commands.
Tests Configuration:
If you need to interact with the API (for instance to record new VCR cassettes) you need to set up environment variables, this way, the tests will have the credentials to have access.
In order to do that, just run cp gencove/tests/.env.dist gencove/tests/.env
and change the desired values from the .env
file.
For more details, read internal CLI testing document.
- Check for the current version by running
version-01-upgrade.sh print
- Make a new branch titled version/X-Y-Z
- Run
version-01-upgrade.sh
in that branch with an argumentmajor
,minor
orpatch
- Create a merge request to master
- Once it is merged, create a merge request of master to prod