Add integrated user-engine scenarios
This commit is contained in:
parent
4058d15dbc
commit
9b241ab2e3
6 changed files with 525 additions and 12 deletions
12
Makefile
12
Makefile
|
|
@ -1,6 +1,14 @@
|
|||
.PHONY: test
|
||||
.PHONY: test test-unit test-scenarios test-integration test-conformance
|
||||
|
||||
PYTHON ?= python3
|
||||
|
||||
test:
|
||||
test: test-unit
|
||||
|
||||
test-unit:
|
||||
PYTHONPATH=src $(PYTHON) -m unittest discover -s tests -p 'test_*.py'
|
||||
|
||||
test-scenarios: test-unit
|
||||
|
||||
test-integration: test-unit
|
||||
|
||||
test-conformance: test-unit
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue