renamed: .hgignore -> .gitignore new file: .gitlab-ci.yml new file: Makefile modified: README.rst new file: ago/__init__.py renamed: ago.py -> ago/ago.py new file: ago/tests/__init__.py renamed: test_ago.py -> ago/tests/test_ago.py new file: requirements-test.txt modified: setup.py
10 lines
189 B
Makefile
10 lines
189 B
Makefile
env:
|
|
python3 -m venv env
|
|
. env/bin/activate
|
|
env/bin/pip install --upgrade pip
|
|
|
|
test: env
|
|
#env/bin/py.test --lf
|
|
env/bin/pip install --upgrade -r requirements-test.txt
|
|
env/bin/py.test
|
|
|