Skip to content
Permalink
a45507abc4
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
16 lines (10 sloc) 386 Bytes
all: FORCE
@echo "This is an empty Makefile. You can put stuff in here, or just delete it if you don't need it."
test: FORCE
echo "If you don't have pytest installed, you will need to install it globally or use 'make venv' if you want a virtualenv created with it in"
py.test -v tests/
venv: FORCE
python3 -m venv venv
prereqs: FORCE
pip install -r requirements.txt
FORCE: