Skip to content

Latest commit

 

History

History
61 lines (40 loc) · 1.72 KB

development.rst

File metadata and controls

61 lines (40 loc) · 1.72 KB

Development

To contribute to pytest-variables you can use Hatch to manage a python virtual environment and pre-commit to help you with styling and formatting.

To setup the virtual environment and pre-commit, run:

$ hatch -e test run pre-commit install

If you're not using Hatch, to install pre-commit, run:

$ pip install pre-commit
$ pre-commit install

Automated Testing

All pull requests and merges are tested in GitHub Actions based on the workflows defined in .github/workflows.

Running Tests

You will need Tox installed to run the tests against the supported Python versions. If you're using Hatch it will be installed for you.

With Hatch, run:

$ hatch -e test run tox

Otherwise, to install and run, do:

$ pip install tox
$ tox

Releasing a new version

Follow these steps to release a new version of the project:

  1. Update your local master with the upstream master (git pull --rebase upstream master)
  2. Create a new branch and update CHANGES.rst with the new version, today's date, and all changes/new features
  3. Update pyproject.toml with the new version
  4. Commit and push the new branch and then create a new pull request
  5. Wait for tests and reviews and then merge the branch
  6. Once merged, update your local master again (git pull --rebase upstream master)
  7. Tag the release with the new release version (git tag <new tag>)
  8. Push the tag (git push upstream --tags)
  9. Done.