Files
Sheerka-Old/Makefile
T
kodjo 1059ce25c5 Fixed #68: Implement SheerkaQL
Fixed #70: SheerkaFilterManager : Pipe functions
Fixed #71: SheerkaFilterManager : filter_objects
Fixed #75: SheerkaMemory: Enhance memory() to use the filtering capabilities
Fixed #76: SheerkaEvaluateConcept: Concepts that modify the state of the system must not be evaluated during question
2021-04-26 19:13:47 +02:00

22 lines
395 B
Makefile

.PHONY: test
test: clean
py.test tests
freeze-req:
pip freeze > requirements.txt
clean:
rm -rf build
rm -rf docs/build
rm -rf docs/source/_build
rm -rf prof
rm -rf tests/prof
rm -rf tests/build
rm -rf Untitled*.ipynb
rm -rf .ipynb_checkpoints
find . -name '.pytest_cache' -exec rm -rf {} +
find . -name '__pycache__' -exec rm -rf {} +
find . -name 'debug.txt' -exec rm -rf {} +