modified: .gitignore
new file: Makefile modified: README.rst modified: nested_lookup/lookup_api.py new file: nested_lookup/tests/__init__.py renamed: test_lookup_api.py -> nested_lookup/tests/test_lookup_api.py renamed: test_nested_lookup.py -> nested_lookup/tests/test_nested_lookup.py new file: requirements-test.txt modified: setup.py
This commit is contained in:
parent
a8c790d60e
commit
1c6dbd32f8
9 changed files with 31 additions and 16 deletions
9
Makefile
Normal file
9
Makefile
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
env:
|
||||
python3 -m venv env
|
||||
. env/bin/activate
|
||||
env/bin/pip install --upgrade pip
|
||||
|
||||
test: env
|
||||
env/bin/pip install --upgrade -r requirements-test.txt
|
||||
env/bin/py.test
|
||||
#env/bin/py.test --lf
|
||||
Loading…
Add table
Add a link
Reference in a new issue