.PHONY: push
git push
-## check Quick run of regression tests,
+## check Quick run of all regression tests,
## only with the default python
.PHONY: check
check: devel/pytest
devel/pytest/bin/flake8 .
devel/pytest/bin/py.test --cov=pgwui_${PGWUI_NAME} tests
+## check-unit Quick run of unit regression tests,
+## only with the default python
+.PHONY: check-unit
+check-unit: devel/pytest
+ devel/pytest/bin/flake8 .
+ devel/pytest/bin/py.test -m unittest --cov=pgwui_${PGWUI_NAME} tests
+
+## check-integration Quick run of integration regression tests,
+## only with the default python
+.PHONY: check-integration
+check-integration: devel/pytest
+ devel/pytest/bin/flake8 .
+ devel/pytest/bin/py.test -m integrationtest \
+ --cov=pgwui_${PGWUI_NAME} tests
+
## pudb Run the python pudb debugger
.PHONY: pudb
pudb: devel/pudb
exclude = .tox,*.egg,build,data,devel
select = E,W,F
ignore = W503
+
+[pytest]
+markers =
+ unittest
+ integrationtest