Just Python 3.8
Python 3.6-3.8 + PyPi
Ubuntu + OS X Python 3.6-3.8 + PyPi
Code Climate Maintability
Code Climate Test Coverage
AWS Code Build
This is a repo for doing advanced testing
- Create and source virtualenv
virtualenv ~/.advanced-testing
source ~/.advanced-testing/bin/activate
- Create scaffold
touch Makefile && touch test_hello.py && touch hello.py. && requirements.txt
- Populate
Makefile
install:
pip install --upgrade pip &&\
pip install -r requirements.txt
test:
python -m pytest -vv --cov=hello --cov=hellocli test_hello.py
lint:
pylint --disable=R,C hello.py hellocli.py
all: install lint test
- pdb
- testing