Browse Source

add makefile and update instructions with quick start

main
Charles Reid 3 years ago
parent
commit
90effa5d40
Signed by: charlesreid1
GPG Key ID: 078B7759B68B353A
  1. 10
      Makefile
  2. 31
      Readme.md
  3. 5
      common.mk

10
Makefile

@ -0,0 +1,10 @@ @@ -0,0 +1,10 @@
include common.mk
tox:
tox
build:
tox -e build
clean:
rm -fr build dist __pycache__ *.egg-info/

31
Readme.md

@ -20,6 +20,37 @@ Package demonstrating how to run Python package tests via tox, covering @@ -20,6 +20,37 @@ Package demonstrating how to run Python package tests via tox, covering
multiple versions of Python. Demonstrate how to modify library implementations
based on the version of Python.
## Extremely Quick Start
The fastest way to get started is to set up a virtual environment, and install tox into it:
```
python -m virtualenv -p py39 vp && source vp/bin/activate
pip install tox
```
Now list all available tox environments:
```
tox -la
```
Build the package:
```
make build
```
Use this one make command to run all the tox tests:
```
make tox
```
(This will require some additional setup to have multiple correct versions of Python,
see pyenv instructions below.)
## Using tox
To use tox to run tests, start by installing the dev dependencies:

5
common.mk

@ -0,0 +1,5 @@ @@ -0,0 +1,5 @@
SHELL=/bin/bash
ifeq ($(shell which tox),)
$(error Please install tox or activate your virtual environment before running make commands)
endif
Loading…
Cancel
Save