mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
switch to pytest test runner for better testing experience
This commit is contained in:
parent
63602c4a9e
commit
869a12c748
287 changed files with 58 additions and 26 deletions
13
Makefile
Normal file
13
Makefile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# create virtual environment
|
||||
PYTHON = python2.7
|
||||
|
||||
.env:
|
||||
virtualenv .env -p $(PYTHON)
|
||||
|
||||
# install all needed for development
|
||||
develop: .env
|
||||
.env/bin/pip install -e . -r dev_requirements.txt tox
|
||||
|
||||
# clean the development envrironment
|
||||
clean:
|
||||
-rm -rf .env
|
||||
Loading…
Add table
Add a link
Reference in a new issue