. . .should all be reported on the GitHub Issue Tracker .
- Describe what you expected to happen.
- If possible, include a minimal, complete, and verifiable example to help
- Describe what actually happened. Include the full traceback if there was an exception.
Having the latest version of
git
installed locallyHaving Python 3.6 installed locally
Having
virtualenv
installed locallyTo install
virtualenv
you can run the following command$ pip install virtualenv
Having
docker
anddocker-compose
installed locallyHaving
pip
environment variables correctly configuredSome of the package's dependencies of the project could be hosted on a custom PyPi server. In this case you need to set some environment variables in order to make
pip
inspect the custom pypi server when installing packages.To set
pip
environment variables on a permanent basis you can add the following lines at the end of your\.bashrc
file (being careful to replace placeholders)# ~/.bashrc ... # Indicate to pip which pypi server to download from export PIP_TIMEOUT=60 export PIP_INDEX_URL=<custom_pypi_protocol>://<user>:<password>@<custom_pypi_host> export PIP_EXTRA_INDEX_URL=https://pypi.python.org/simple
Clone the project locally
Create development environment using Docker or Make
$ make init
The project
.
├── consensys_utils/ # Main package source scripts (where all functional python scripts are stored)
├── docs/ # Docs module containing all scripts required by sphinx to build the documentation
├── tests/ # Tests folder where all test modules are stores
├── .coveragerc # Configuration file for coverage
├── .gitignore # List all files pattern excluded from git's tracking
├── .gitlab-ci.yml # GitLab CI script
├── AUTHORS # List of authors of the project
├── CHANGES # Changelog listing every changes from a release to another
├── CONTRIBUTING.rst # Indicate the guidelines that should be respected when contributing on this project
├── LICENSE # License of the project
├── Makefile # Script implement multiple commands to facilitate developments
├── README.rst # README.md of your project
├── setup.cfg # Configuration of extra commands that will be installed on package setup
├── setup.py # File used to setup the package
└── tox.ini # Configuration file of test suite (it runs test suite in both Python 3.5 and 3.6 environments)
Please follow the next workflow when developing
- Create a branch to identify the feature or issue you will work on (e.g.
feature/my-feature
orhotfix/2287
) - Using your favorite editor, make your changes, committing as you go and respecting the AngularJS Commit Message Conventions
- Follow PEP8 and limit script's line length to 120 characters. See testing-linting
- Include tests that cover any code changes you make. See running-test and running-coverage
- Update
setup.py
script with all dependencies you introduce. See adding-dependency for precisions - Write clear and exhaustive docstrings. Write docs to precise how to use the functionality you implement. See writing-docs
- Update changelog with the modifications you proceed to. See updating-changelog
- Your branch will soon be merged ! :-)
Run test suite in by running
$ make test
Please ensure that all the lines of source code you are writing are covered in your test suite. To generate the coverage report, please run
$ make coverage
Read more about coverage.
Running the full test suite with tox
will combine the coverage reports from all runs.
To test if your project is compliant with linting rules run
$ make test-lint
To automatically correct linting errors run
$ make lint
Run test suite in multiple distinct python environment with following command
$ make tox
Write clear and exhaustive docstrings in every functional scripts.
This project uses sphinx to build documentations, it requires docs file to be written in .rst
format.
To build the documentation, please run
$ make docs
Every implemented modifications on the project from a release to another should be documented in the changelog CHANGES.rst
file.
The format used for a release block is be the following
Version <NEW_VERSION>
---------------------
Released on <NEW_VERSION_RELEASED_DATE>, codename <NEW_VERSION_CODENAME>.
Features
- Feature 1
- Feature 2
- Feature 3
Fixes
- Hotfix 1 (``#134``)
- Hotfix 2 (``#139``)
.. _#134: https://github.com/ConsenSys/consensys-utils/issues/134
.. _#139: https://github.com/ConsenSys/consensys-utils/issues/139
Be careful to never touch the header line as well as the release's metadata sentence.
Version <NEW_VERSION>
---------------------
Released on <NEW_VERSION_RELEASED_DATE>, codename <NEW_VERSION_CODENAME>.
When adding a new package dependency it should be added in setup.py
file in the install_requires
list
The format should be dependency==1.3.2
.
- When adding a dev dependency (e.g. a testing dependency) it should be added in
setup.py
file in theextra_requires
dev
listtox.ini
file in the[testenv]
deps
Makefile
implements multiple handful shell commands for development
- Initialize development environment including
- venv creation
- package installation in dev mode
Clean the package project by removing some files such as .pyc
, .pyo
, *.egg-info
Check if python scripts are compliant with PEP8 rules
Automatically correct PEP8 mistakes contained in the project.
Run the test suite and computes test coverage. It creates an html report that is automatically open after the commands terminates
Run the test suites in multiple environments
Build documentation from the docs
folder using sphinx.
It generates a build of the documentation in html format located in docs/_build/html
.