rigetti / qiskit-rigetti

Qiskit provider serving Rigetti hardware & simulator backends.
Apache License 2.0
8 stars 5 forks source link

Tox over makefile #32

Closed AdamWRichardson closed 2 months ago

AdamWRichardson commented 2 years ago

An example of how to use tox with a python project to standardise python package creation and testing on the package. For general information the main process of tox is:

The real advantage of using tox rather than relying on poetry is that the package is created in an isolated way so there's no implicit dependencies lying around in the virtualenv. It also installs the package as non-editable so it's testing the actual package that would be used.

Comments, feedback, suggestions all welcome